var win = window;
function goWin(strPath,strName,intWidth,intHeight,strAttr) {
	Str = "height=" + intHeight + ",width=" + intWidth + ",";
	if(parseInt(navigator.appVersion)>3) {
		Str+=",left=" + (screen.width -intWidth) / 2 + ",top=" + parseInt((screen.height -intHeight-50) / 2);
		win=window.open(strPath,strName,Str + strAttr); } }







/*
<!-- ===== showModalDialog POPUP WINDOW ===== -->
window.showModalDialog("pop_build_achor.asp","whatEver","dialogHeight:200px; dialogWidth:400px; edge:Raised; center:Yes; help:No; resizable:No; status:No;");
window.showModalDialog("pop_build_achor.asp","whatEver",
dialogHeight:200px;
dialogWidth:400px;
edge:Raised;
center:Yes;
help:No;
resizable:No;
status:No;
*/

function goWinMD(strPath,strName,intWidth,intHeight,strAttr) {
	Str = 'dialogWidth\:'+intWidth+'px\; dialogHeight\:'+intHeight+'px\;';
	win = window.showModalDialog(strPath,strName,Str + strAttr) }





//window.showModalDialog("pop_build_achor.asp","Dialog Box Arguments # 4","dialogHeight: 200px; dialogWidth: 400px; dialogTop: px; dialogLeft: px; edge: Sunken; center: Yes; help: No; resizable: No; status: No;");

//window.showModalDialog('pop_build_achor.asp','' ,'dialogHeight:330')
//dialogHeight:sHeight Sets the height of the dialog window (see Remarks for default unit of measure). 
//dialogLeft:sXPos Sets the left position of the dialog window relative to the upper-left corner of the desktop. 
//dialogTop:sYPos Sets the top position of the dialog window relative to the upper-left corner of the desktop. 
//dialogWidth:sWidth 
//return false;