﻿// JScript 파일
function OpenPage(url, width, height) 
{
	var targetdestination;
	targetdestination=url;
	if ((typeof SearchPopUp)=="undefined")
	{
		SearchPopUp = window.open(targetdestination,'help',"toolbar=no,directions=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+width+",height="+ height)
		SearchPopUp.focus()
	}
	else
	{
		if (SearchPopUp.closed)
		{
			if ((typeof SearchPopUp)=="undefined" || (typeof SearchPopUp)==null)
			{
				SearchPopUp = window.open(targetdestination,'help',"toolbar=no,location=no,directions=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+width+",height="+ height)
				SearchPopUp.focus()
			}
			else
			{
				if (SearchPopUp.closed)
				{
					SearchPopUp = window.open(targetdestination,'help',"toolbar=no,location=no,directions=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+width+",height="+ height)
					SearchPopUp.focus()
				}
				else
				{
					SearchPopUp.close()				
					SearchPopUp = window.open(targetdestination,'help',"toolbar=no,location=no,directions=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+width+",height="+ height)
					SearchPopUp.focus()
				}
			}
		}
		else
		{
			SearchPopUp.close()
			SearchPopUp = window.open(targetdestination,'help',"toolbar=no,location=no,directions=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+width+",height="+ height)
		}
	}
}	


