function wallpaper(wallpaper,size)
{
	var width = 600;
	var height = 600;
	var left = (screen.width/2) - (width/2);
	var top = (screen.height/2) - (height/2);
	window.open("showWallpaper.asp?wallpaper=" + wallpaper + "&size=" + size, "wpWin", "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",scrollbars,resizable");
}

function popUp(url)
{
	var width = 600;
	var height = 600;
	var left = (screen.width/2) - (width/2);
	var top = (screen.height/2) - (height/2);
	window.open(url, "popWin", "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",scrollbars,resizable");
}

function trailerPop(url,width,height)
{
	var left = (screen.width/2) - (width/2);
	var top = (screen.height/2) - (height/2);
	window.open(url, "popWin", "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",scrollbars,resizable");
}

function clearIt(theText)
{
	if (theText.value == theText.defaultValue)
	{
		theText.value = ""
	}
}