function OpenDeleteWin(URL)
{
	var newwin = top.open(URL,"newwin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=375,height=200");
	newwin.moveTo((screen.availWidth-375)/2,(screen.availHeight - 180)/2);
}

function OpenDeleteModalWin(URL)
{
	var width = 380;
	var height = 210;
	var left = (screen.availWidth - 380)/2;
	var top = (screen.availHeight - 210)/2;
	
	var args = "dialogHeight:" + height + "px;dialogWidth:" + width + "px;dialogTop:" + top + ";dialogLeft:" + left + ";scrollbars:1;status:0;help:0;edge:raise;center:yes;resizeable:1;";
	window.showModalDialog(URL,parent,args);
}

function ShowPopupModalWindow(width,height,URL)
{
  var left = (screen.width - width)/2;
  var top = (screen.height - height)/2;
  var args = "dialogHeight:" + height + "px;dialogWidth:" + width + "px;dialogTop:" + top + "px;dialogLeft:" + left + "px;scrollbars:1;status:0;help:0;edge:raise;center:yes;resizeable:1;";
  window.showModalDialog(URL,window,args);
  
}


function OpenURL(URL)
{
	if (URL != null || URL != "")
	{
		var win = window.open(URL,"","Width=670px,Height=480px,resizable=yes,scrollbars=yes,location=no,status=yes,menubar=yes,toolbar=yes");	
	}	
}

//´ò¿ª¸½¼þ´°¿Ú
function OpenAccessWindow(URL)
{
	var width = 920;
	var height = 650;
	var args = "dialogHeight:" + height + "px;dialogWidth:" + width + "px;dialogTop:200px;dialogLeft:150px;scrollbars:1;status:0;help:0;edge:raise;center:yes;resizeable:1;";
	window.showModalDialog(URL,parent,args);
}

