function WindowPopup(url, width, height)
{

	///alert(url);
	
	if (parent.newWindow) newWindow.close();
	
	newWindow = window.open(url, 'popup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, width=' + width + ', height=' + height );
	//newWindow = window.open(url, 'popup', 'toolbar=no,location=yes,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes, width=' + width + ', height=' + height );
	newWindow.focus();
}

function WindowPopupModal(title, url, width, height)
{
	if (parent.newWindow) newWindow.close();

	newWindow = window.open(url,title,'height='+height+',width='+width+',toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,modal=no');
	
	newWindow.focus();
}