function popupwindow(PUTID,WindowWidth,WindowHeight) 
{
	var locationwindow = "toobar=no, titlebar=no, menubar=no, titlebar=no, location=no, directories=no, status=no, scrollbars=no, resizable=yes, copyhistory=no,width=" + WindowWidth + ",height=" + WindowHeight;
	var x = window.open ("http://www.templatezone.com/gallery/popup.asp?PUTID="+  PUTID +  "", "NewWin", locationwindow);
	x.focus();	
}

//Variables and functions for the newsletter subscription form
var i, j;
i=0;
j=0;

function cleartext()
{
	//clear the text, but only the first time the user clicks the box
	if (i==0)
	{
		document.Frmnews.Email.value="";
	}
	i=i+1;
}

function selecttext()
{
	if (j==0)
	{
		document.Frmnews.Email.select();
	}
	j=j+1;
}