// this file created by dhanesh
// linked in top.php

// this function is uesd for the cookie
// by swapnil bedekar
// parameter  - NameOfCookie
function getCookie(NameOfCookie)
	{
		if (document.cookie.length > 0) 
			{
				begin = document.cookie.indexOf(NameOfCookie+"=");       
				if (begin != -1) 
					{
						begin += NameOfCookie.length+1;       
						end = document.cookie.indexOf(";", begin);
						if (end == -1) end = document.cookie.length;
						return unescape(document.cookie.substring(begin, end));
					}
			}
	}
	

// this function is uesd for the right side select case	
// by tejas
// parameter  - url to be open
function openwin2 (url) {
window.open("http://www.emedoutlet.com/"+url,"Emedoutlet","resizable=yes,scrollbars=yes,toolbar=no,width=250,height=200,top=50");
}

// this function is uesd for the right side advance search
// by dhanjay
// for validation
function check()
{
var search_string=document.getElementById('searchd').value;
if(search_string =="") 
 {
 alert("Please Enter Search Criteria");
 document.getElementById('searchd').focus();
 return;
}
document.search_box.submit();
}

function check1() {
	var med = document.search_brand_cat.txtcate.value;
	if(med != 'Select Category'){
		window.location.href='/'+med+"-medicine.html";
	}
	
}
function MakeRedirection() {
		window.location.href="http://www.superdrugsaver.com";
}

