
function OpenWindow(strUrl, strName, intWidth, intHeight){
	window.open(strUrl, strName,'scrollbars=yes,location=no,menubar=no,resizable=yes,toolbar=no,width=' + intWidth + ',height=' + intHeight);
}
