//Copyright 2009-2010 Cumpilations.com, All Rights Reserved
	function fullScreen(url)
    {
        var windowprops = "top=0,left=0,resizable=no,width=" + screen.width + ",height=" + screen.height + ",fullscreen=yes,scrollbars=auto";
        window.open(url, "popupPage", windowprops);
    }
	function wopen(url, name, w, h)
	{
		w += 32;
		h += 96;
		 var win = window.open(url,
		  name, 
		  'width=' + w + ', height=' + h + ', ' +
		  'location=no, menubar=no, ' +
		  'status=no, toolbar=no, scrollbars=1');
		 win.resizeTo(w, h);
		 win.focus();
	}
	function clickclear(thisfield, defaulttext) 
	{
		if (thisfield.value == defaulttext) {
		thisfield.value = "";
		}
	}
	function clickrecall(thisfield, defaulttext) 
	{
		if (thisfield.value == "") {
		thisfield.value = defaulttext;
		}
	}
