function Get_Cookie(name) {
    var start = document.cookie.indexOf(name+"=");
    var len = start+name.length+1;
    if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
    if (start == -1) return null;
    var end = document.cookie.indexOf(";",len);
    if (end == -1) end = document.cookie.length;
    return unescape(document.cookie.substring(len,end));
}

function getTheBrochure(name){
	if(Get_Cookie("FilledContacts") == "yes"){
//		w = window.open('pdf/' + name + '.pdf', 'FilePopup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no');
//		w.focus();
		location.href = 'pdf/' + name + '.pdf';
	}else{
		location.href = "contact.htm?" + name;
	}
}
