//
// H&G Promotions - Javascript
//

function alterForm() {
	var form = document.checkout;
	if(form.same.checked) {
		form.bill_title.disabled = true;
		form.bill_firstname.disabled = true;
		form.bill_lastname.disabled = true;
		form.bill_addr1.disabled = true;
		form.bill_addr2.disabled = true;
		form.bill_city.disabled = true;
		form.bill_county.disabled = true;
		form.bill_postcode.disabled = true;
		form.bill_country.disabled = true;
	}
	if(!form.same.checked) {
		form.bill_title.disabled = false;
		form.bill_firstname.disabled = false;
		form.bill_lastname.disabled = false;
		form.bill_addr1.disabled = false;
		form.bill_addr2.disabled = false;
		form.bill_city.disabled = false;
		form.bill_county.disabled = false;
		form.bill_postcode.disabled = false;
		form.bill_country.disabled = false;
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function CreateBookmarkLink() {

	title = document.title;
	url = window.location.href;
	
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,"");
	} else if(window.external) {
		window.external.AddFavorite( url, title); 
	} else if(window.opera && window.print) {
		return true;
	}
	
}
