function OpenLocations(url){
   window.open(url, "_blank","top=100,left=150,height=500,width=600,toolbar=0,menubar=0,scrollbars=1");
}

function showOutlet(urlstr){
	window.open(urlstr , "_blank","top=182,left=210,height=500,width=400,toolbar=0,menubar=0,scrollbar=0"); 
}

//Color selection
function colorselect(cmb){
	if (cmb.value==""){
		alert("Please select color.");
	} else {
		var colorid   = cmb.value;
		var colorname = cmb.options[cmb.selectedIndex].text;				window.open("prodcatgdisplay.php?colorid="+colorid+"&colorname="+colorname+"&catgdesc="+colorname+" Flowers", target="_parent");
	}
}

//Flower type selection
function flowerselect(cmb){
	if (cmb.value==""){
		alert("Please select the flower type you want.");
	} else {
		var cmbid   = cmb.value;
		var cmbname = cmb.options[cmb.selectedIndex].text; 				window.open("prodcatgdisplay.php?flowerid="+cmbid+"&flowername="+cmbname+"&catgdesc="+cmbname,target="_parent");
	}
}

//Flower type selection
function priceselect(cmb){
	if (cmb.value==""){
			alert("Please select the price range you want.");
	} else {
			var cmbid   = cmb.value;
			var cmbname = cmb.options[cmb.selectedIndex].text;
   		window.open("prodcatgdisplay.php?priceid="+cmbid+"&pricename="+cmbname+"&catgdesc= Flowers for "+cmbname,target="_parent");
	}
}