function openRoboHelp(url) {
	var w = window.open (url, "win", "height=500,width=750,location,menubar,resizable,scrollbars,status,toolbar");
}

function showShipForm(the_checkbox){
	if ( the_checkbox.checked == true ) {
		document.getElementById("ShippingBlock").style.display = "block";
	} else {
		document.getElementById("ShippingBlock").style.display = "none";
	}
}

function openDemo(url) {
	var w = window.open (url, "win", "height=500,width=790,location,menubar,resizable,scrollbars,status,toolbar");
}