// JavaScript Document


//popup handler
//popup configuration flags
var strStandard = 'toolbar=no,location=no,status=no,scrollbars=no,resizable=no';
var strVScroll = 'toolbar=no,location=no,status=no,scrollbars=yes,resizable=no';	

function wndPopUp(strURL,intWidth,intHeight) {
	var strWndProperties,strWndName,dateSeed
	wndSeed = Math.floor(Math.random()*1000);

	strWndName = 'wnd' + wndSeed.toString();	
	strWndProperties = strStandard + ',width=' + intWidth;
	strWndProperties = strWndProperties + ',height=' + intHeight;
	var hwnd = window.open(strURL,strWndName,strWndProperties);
	hwnd.focus();
}

function wndPopUp_vscroll(strURL,intWidth,intHeight) {
var strWndProperties,strWndName,dateSeed
	wndSeed = Math.floor(Math.random()*1000);

	//strWndName = 'wnd' + 'painting';	
	strWndProperties = strVScroll + ',width=' + intWidth;
	strWndProperties = strWndProperties + ',height=' + intHeight;
	var hwnd = window.open(strURL,strWndName,strWndProperties);
	hwnd.focus();
}	
