function openWindow(url,label,theWidth,theHeight)
{
	window.open(url,label,"directory=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,width=" + theWidth + ",height=" + theHeight);
}

function windowAlert(url)
{
	window.alert(url);
}