function windowOpen (url, windowName, width, height, features)
{
	if (features != null)
		features = "," + features;
	else
		features = "";
	newWindow = window.open	(url, windowName, 'HEIGHT=' + height + ',WIDTH=' + width + features);
	newWindow.focus();
	
	return false;
}
