// JavaScript Document

function showScreen( fileName , width, height)
{
	var windowOptions = "resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height;
	window.open( fileName , 'screen', "'" + windowOptions + "'" );
}

