// JavaScript Document
function openMobile(url){
	popup(url,600,550);
}
function openContact(url){
	popup(url,600,550);
}
function openProfile(url){
	popup(url,600,550);
}
function openEntry(url){
	popup(url,600,550);
}
function openInquiry(url){
	popup(url,760,570);
}
function popup(url,width,height){
	var win = window.open(url,'popup','menubars=no,toolbar=no,status=yes,resize=yes,resizable=yes,scroll=yes,scrollbar=yes,scrollbars=yes,width=' + width +',height=' + height );
	win.focus();
}
function openMobile2(url){
	popup('./mobile/index.html',600,550);
}
function openEntry2(url){
	popup('./entry/form.html',600,550);
}
