function openWindow(pFile, pWidth, pHeight) {
	w=screen.width;
	h=screen.height;
	w=(w-pWidth)/2;
	h=(h-pHeight)/2;
    window.open(pFile, '_blank', 'toolbar=no, left='+w+', top=0, width='+pWidth+', height='+pHeight+', status=no, scrollbars=yes, resize=no, menubar=no, location=no');
}

function openWindow2(pFile, pWidth, pHeight) {
	w=screen.width;
	h=screen.height;
	w=(w-pWidth)/2;
	h=(h-pHeight)/2;
    window.open(pFile, '_blank', 'toolbar=no, left='+w+', top=150, width='+pWidth+', height='+pHeight+', status=no, scrollbars=no, resize=no, menubar=no, location=no');
}

