function popupWindow(strURL, strTitle, intWidth, intHeight){
	if (strTitle==undefined){
		eval('window.open("'+strURL+'")');
	}else{
		eval('window.open("'+strURL+'", "'+strTitle+'"," width='+intWidth+', height='+intHeight+'")');
	}
}

