function switchIt(){
	
		
		if(document.getElementById("popup") != null)
		{
			document.getElementById("popup").href = "javascript:popItUp('" + document.getElementById("popup").href + "', '" + document.getElementById("popup").name + "');";
			
			//check for other popups
			for(var i = 2; i < 11; i++)
			{
				if(document.getElementById("popup" + i) != null)
				{
					document.getElementById("popup" + i).href = "javascript:popItUp('" + document.getElementById("popup" + i).href + "', '" + document.getElementById("popup" + i).name + "');";
				}
				else
				{
					break;
				}
			}
		}
		
		else if(document.getElementById("IsProductVideoPage") != null)
		{
			var anchors = document.getElementsByTagName("a");
			for (var anchor = 0; anchor<anchors.length;anchor++)
			{
				if(anchors[anchor].id.indexOf("popup_") > -1)
				{
					anchors[anchor].href = "javascript:popItUp('" + anchors[anchor].href + "', '" + anchors[anchor].name + "');";
				}
			}
			
		}

	}

	function popItUp2(theURL, HWStr){
		window.open(theURL, "newPopUpWindow", HWStr + ',scrollbars=no, toolbar=yes,status=0');
		return;  // This line is important.  Trust me.
	}
	function popItUp(theURL, HWStr){
		window.open(theURL, "newPopUpWindow", HWStr + ',scrollbars=yes, toolbar=yes,status=0');
		return;  // This line is important.  Trust me.
	}
