			var newwindow;
			function OpenProductText(prodId, textTypeId)
			{
				newwindow=window.open('/Product/Attributes/ProductText.aspx?p=' + prodId + '&TextTypeId=' + textTypeId ,'name','height=232,width=424,location=no,addressbar=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no');
				if (window.focus) {newwindow.focus()}
			}

			function OpenAssetsPopup(prodId, selectedAssetType){
				var url = "/Product/AssetPopup.aspx?p=" + prodId + "&AssetType=" + selectedAssetType;
				newwindow = window.open(url, "assets", "height=570,width=620,location=no,addressbar=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no");
				if (window.focus) {newwindow.focus()}
			}
			
			function OpenFlashAssetsPopup(prodId, selectedAssetType, tab){
				var url = "/Product/AssetPopup.aspx?p=" + prodId + "&AssetType=" + selectedAssetType + "&s_button=" + tab;
				newwindow = window.open(url, "assets", "height=580,width=680,location=no,addressbar=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no");
				if (window.focus) {newwindow.focus()}
			}
			
			function OpenSafetyWarning(safetyType){
				var url = "/Product/Attributes/SafetyWarning.aspx?type=" + safetyType;
				newwindow = window.open(url, "safety", "height=238,width=690,location=no,addressbar=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no");
				if (window.focus) {newwindow.focus()}
			}
			
			function OpenSafetyWarningNew(safetyType, shipTo){
				var url = "/Product/Attributes/SafetyWarning.aspx?type=" + safetyType;
				if(shipTo=="US" || shipTo=="CA"){
				    newwindow = window.open(url, "safety", "height=238,width=690,location=no,addressbar=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no");
				    if (window.focus) {newwindow.focus()}
				}
				else{
				    newwindow = window.open(url, "safety", "height=400,width=690,location=no,addressbar=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no");
				    if (window.focus) {newwindow.focus()}
				}
			}

			function OpenProductLimit(limit)
			{
				newwindow=window.open('/Product/Attributes/ProductLimit.aspx?limit=' + limit,'limit','height=235,width=530,location=no,addressbar=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no');
				if (window.focus) {newwindow.focus()}
			}
