function pUCall( url, height, width, scrollbars, resize )
{
		smallWindow = window.open ( url, 'newwindow', config='height=' + height + ', width=' + width +', toolbar=no, menubar=no, scrollbars=' + scrollbars + ', resizable=' + resize + ', location=no, directories=no, status=no')
		smallWindow.focus();
}
function refreshParent( )
{
	opener.location.reload();
}