$(function(){
	$("a.popup,area.popup").click(function(e){
		var win = window.open( this.href, "popupwin", "scrollbars=yes,resizable=yes,width=700,height=500");
		win.focus();
		return false;
	});
	$("a.inquirypopup").click(function(e){
		var win = window.open( this.href, "inquirypopup", "scrollbars=yes,resizable=yes,width=700,height=700");
		win.focus();
		return false;
	});
});

