// JavaScript Document

	function GoogleImageSearch(SearchTerm){
		if(SearchTerm == ""){
			alert("Please select a search term first.")
		}
		else{
			SearchTerm = SearchTerm.replace(/\s/, "+");
			var SearchAddress = "http://images.google.com/images?ie=UTF-8&oe=UTF-8&hl=en&q=" + SearchTerm;
			newWindow = window.open(SearchAddress, "google", "height=500,width=800,directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes");
		}
	}
	function SearchKeywords(Keywords){
		document.forms["keywordsubmit"].keywords.value= Keywords;
		document.forms["keywordsubmit"].submit();
	}
	function CheckKeywords(Keywds){
		if(Keywds == ""){
			alert("Please enter a keyword before searching.");
			return false;
		}
		else{
			return true;
		}
	}
	function TempalteByCategory(){
		document.location = "./templates.php?categorytemplate=0&productIDview=73&productid=73";
	}

	function UploadFinishedArtwork(){
		document.location = "./product_uploadartwork.php?productid=73";
	}



	function hl(e)
	{
		e.style.backgroundColor='#FFFFCC';
	}
	function dl(e)
	{
		e.style.backgroundColor='#DDDDDD';
	}

	function browseByCategory(){

		document.location = "./templates.php?categorytemplate=0&productIDview=73&productid=73";
	}
	function uploadArtworkPage(){
		document.location = "./product_uploadartwork.php?productIDview=73&productid=73";
	}

	function changeKeyword(keyword){
		document.location = "./templates.php?keywords="+escape(keyword)+"&productIDview=73&productid=73";
	}
	function changeCategory(categoryID){
		document.location = "./templates.php?categorytemplate="+categoryID+"&productIDview=73&productid=73";
	}