function OpenWindow(strNavigateURL,intWindowWidth,intWindowHeight) {
	if (strNavigateURL.indexOf("?") == -1) {window.open(strNavigateURL,'_blank','toolbar=0,location=0,menubar=0,width='+intWindowWidth+',height='+intWindowHeight+',scrollbars=1,resizable=1');}
	else {window.open(strNavigateURL,'_blank','toolbar=0,location=0,menubar=0,width='+intWindowWidth+',height='+intWindowHeight+',scrollbars=1,resizable=1');}
}
