function PopUpWindow(strLink) { 
	var win; 
	//var intLeft=(screen.width)?(screen.width-intWidth)/2:100;
	//var intTop=(screen.height)?(screen.height-intHeight)/2:100;
	win = window.open(strLink, 'Hwnd', 'height=400, width=400, resizable=yes, scrollbars=yes');
	win.focus();
}
