// GoUrl
function GoUrl(url) {
	self.location.href=url;
}


function OpenFile(url) {
	var left = (screen.width/2) - (300/2);
	var top = (screen.height/2) - (124/2); 
	window.open(url,"filetrans","width=300,height=124,top="+top+",left="+left+",status=no,toolbar=no,menubar=no,location=no,fullscreen=no,scrollbars=no,resizable=no");
}


// ÇöÀçÃ¢ Reload 
function MainReload()
{
	self.location.reload();
}


// ¸ÞÀÎÆäÀÌÁö·Î
function GoHome()
{
	self.location.href="/main.html";
}


