function pop_window(url,strName,intHeight,intWidth,intScroll,intButtons,intResize,intMenuBar) {
	if(intButtons != 1) {
		intButtons = 0;
	}
	if(intMenuBar != 1) {
		intMenuBar = 0;
	}
	if(navigator.userAgent.indexOf("MSIE") == -1) {
		newwindow2 = window.open(url, strName,'toolbar='+ intButtons +',location=0,directories=0,status=0,menubar='+intMenuBar+',scrollbars='+ intScroll +',resizable='+ intResize+ ',width='+intWidth+',height='+intHeight);
		newwindow2.moveTo(24,24);
		newwindow2.focus();
	} else {
		newwindow2 = window.open(url, strName,'toolbar='+ intButtons +',location=0,directories=0,status=0,menubar='+intMenuBar+',scrollbars='+ intScroll +',resizable='+ intResize+ ',width=' + intWidth + ',height=' + intHeight);
		newwindow2.moveTo(24,24);
		newwindow2.focus();
	}
}