// redirect url
function go(obj) {
	var url = obj.options[obj.selectedIndex].value;
	if (url != "")
		window.location = obj.options[obj.selectedIndex].value;
}

// opens a new window with URL address to download acrobat reader
function adobe() {
	newwin = window.open("http://www.adobe.com/prodindex/acrobat/readstep.html","_blank","toolbar=Yes,location=Yes,directories=Yes,status=Yes,menubar=Yes,scrollbars=Yes,resizable=Yes,height=500,width=700,left=60,top=60")
}

//opens a new window with form
function showForm(sURL, sformName) {
	if (window.screen.width <= 800) {
  		var sProperties = 'left=10,top=100,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=650,height=300';
 	} else {
  		var sProperties = 'left=90,top=135,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=750,height=400';
 	}
	
	if (sformName == null) {
		sformName = "_blank";
	}
	
	var newwin = window.open(sURL, sformName, sProperties);
}

// opens a new window
function openWindow(sURL, sformName) {
	if (sformName == null) {
		sformName = "_blank";
	}
	newwin = window.open(sURL, sformName ,"toolbar=Yes,location=Yes,directories=Yes,status=Yes,menubar=Yes,scrollbars=Yes,resizable=Yes,height=500,width=700,left=60,top=60")
}
