<!-- 
function openURL()
{ 

// grab index number of the selected option
selInd = document.theForm.product_select.selectedIndex; 

// get value of the selected option
goURL = document.theForm.product_select.options[selInd].value;

// redirect browser to the grabbed value (hopefully a URL)

if (document.theForm.product_select.options[selInd].value.length >= 2) 
 {
window.open(goURL, "w3adIAYJAAII", "width=420,height=280");
} 
}
function openURL2()
{ 

// grab index number of the selected option
selInd = document.theForm.catProduct.selectedIndex; 

// get value of the selected option
goURL = document.theForm.catProduct.options[selInd].value;

// redirect browser to the grabbed value (hopefully a URL)

if (document.theForm.catProduct.options[selInd].value.length >= 2) 
 {
  window.location=goURL;
} 
}


function openWin(goURL,h,w,n,s,l,t,r)
{
window.open(goURL, n, "height="+h+", width="+w+", scrollbars="+s+", location="+l+", toolbar="+t+", resizable="+r);
}	
//--> 
