
/* Useage: <a href="file.asp"  onclick="openPopUp('file.asp', 475, 550); return false;" target="_blank"> */

/*function openPopUp(sourcefile, w, h) {
    newWin = window.open(sourcefile,'POP');
    newWin.close();
    newWin = window.open(sourcefile,"POP","status=no,toolbar=no,location=no,scrollbars=yes,resizable=yes,width="+w+",height="+h+",screenX=5,screenY=5,left=5,top=5");
}
*/

function openPopUp(sourcefile, w, h) {
	self.name = 'opener';
	window.open(sourcefile,
                    'POP',
                    'width='+w+',height='+h+',scrollbars=yes,status=yes, toolbar=yes, resizable=yes');
}
