function openFullScreen(openURL)
{
	height = screen.height*.90;
	width = screen.width*.90;
	newWindow = window.open(
			openURL,
			"dialog",
			"height="+height+",width="+width+",channelmode=no,directories=no,status=no,menubar=no,toolbar=no,location=no,scrollbars=yes,left=5,top=5",
			false
	);
}