
function wPopUp(strURL, strName, intSizeX, intSizeY, blnToolBar, blnMenuBar, blnLocation, blnStatus, strSpecParam,blnScroll)
{
	var intScroll = 1;	
	var objWin; 
	var strFeaures = "";

	if (intSizeX!=undefined)
		strFeatures += "width="+intSizeX+",";

	if (intSizeY!=undefined)
		strFeatures += "height="+intSizeY+",";
		
	
	if (strFeaures!="") 	
		objWin = window.open(strURL, strName, strFeatures);
	else
		objWin = window.open(strURL, strName);

	return false;
}

