function PopUpWindow(TargetURL, WindowName, wWidth, wHeight, top, left)
{
	var newPop = window.open(TargetURL, WindowName, 'width='+wWidth+',height='+wHeight+',menubar=no,scrollbars=no,resizable=no');
	
	newPop.moveTo(top, left);
	
	newPop.focus();
}
