function show_popup(URLStr, width, height)
{   
	loginwindow=window.open(URLStr, "loginwindow",'status=0,toolbar=0,menubar=no,scrollbars=yes,width=1150,height=800');
	loginwindow.moveTo(200,100);
	 
}

function show_popup_noresize(URLStr)
{
	newwindow=window.open(URLStr,'name','height=750,width=700');
	if (window.focus) {newwindow.focus()}
}