<!--

function PreviewWindow(url,name,width,height,fullscreen)
{
	iWidth = width + 40;
	iHeight = height + 40;


	var fstring = "";
	if (fullscreen == 1)
		fstring = "Width=" + screen.availWidth + ",Height=" + screen.availHeight + ",toolbar=no, titlebar = no , status = no , menubar = no , resizable= no ,scrollbars= yes ,left=0,screenX=0,top=0,screenY=0"
	else
		fstring = "width=" + iWidth + ",height=" + iHeight + ",toolbar=no, titlebar = no , status = no , menubar = no , resizable= no ,scrollbars= yes ,left=300,screenX=300,top=100,screenY=100"

	var hWnd = window.open(url,"",fstring);

	if (hWnd.focus != null) hWnd.focus();

	//return;
}


-->
