function openWindow(sURL,widthValue,heightValue,FrameName,sOptionValue)
{
	var SendURL = sURL + sOptionValue
	var h =   heightValue		// ¼¼·Î
	var w =  widthValue		// °¡·Î
	var t = "no"				// Åø¹Ù
	var scrolls ="no"			// ½ºÅ©·Ñ¹Ù
	var l = "no"				// location bar
	var d = "no"				// directories
	var s = "no"				// status
	var m = "no"				// menubar
	var r = "yes"				// resizable
	var OpenFrame = FrameName  // »õÃ¢À¸·Î ¿­¸± ÇÁ·¹ÀÓ ÀÌ¸§

	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;


	// »õÃ¢ ¿É¼Ç °áÁ¤
	winprops= 'height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar='+t+',scrollbars='+scrolls+',location='+l+',directories='+d+',status='+s+',menubar='+m+',resizable='+r
	win = window.open(SendURL, OpenFrame, winprops)
	// if (parseInt(navigator.appVersion) >= 4) { win.window.focus();}
}
