<!-- hide javascript from old browsers

function Verify(form)
	{
	if (form.sel_size1) {
		if (form.sel_size1.options[form.sel_size1.selectedIndex].value != "select");
		else {
		alert("Please select a size.");
		form.sel_size1.focus()
		return false;
			}
	  }
	 if (form.sel_sizewidth1) {
		if (form.sel_sizewidth1.options[form.sel_sizewidth1.selectedIndex].value != "select size");
		else {
		alert("Please select a size.");
		form.sel_sizewidth1.focus()
		return false;
			}
	  }
	  
	}


function PopupBrowser(img_loc,w,h) {
		var url = "/Products/ShowLgImage.cfm?LargeImage=" + img_loc
		<!--- var dimensions = "width="+w+",height="+h --->
		var dimensions = "resizable=1,width=520,height=520"
        var PopupBrowser = window.open(url,'birkipopup',dimensions);
    } 

function PopupImage(img_loc,w,h) {
		var url = "/Products/ShowLgImage.cfm?LargeImage=" + img_loc
		var dimensions = "width="+w+",height="+h
        var PopupImage = window.open(url,'fwpopup',dimensions);
    } 

function PopupSpec(stylename) {
		var url = "/Products/ShowSpec.cfm?style=" + stylename
        var dimensions = "scrollbars=1,resizable=1,width=580,height=550"
		var launchSpec = window.open(url, 'specpopup',dimensions);
	}

function PopupComment(stylename) {
		var url = "/Forms/sneakcommentmail.cfm?style=" + stylename
        var dimensions = "scrollbars=1,resizable=1,width=500,height=400"
		var launchWindow = window.open(url, 'PopupComment',dimensions);
	}
	
function PopupURL(loc,pname,params) {
        var PopupURL = window.open(loc,pname,params);
    } 

// end hide --> 
