/*
 * Author: Thanh Nguyen (soa_clown@hotmail.com)
 */

function openOrderWindow() {
	 var posw = (screen.width - 400)/2;
	 var posv = (screen.height - 300)/2;
	 features = "height=160,width=350,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no" + ",left=" + posw + ",top="+ posv;
	 orderwin = window.open('order_popup.htm','orderdetails',features);
	 orderwin.focus()
}

function jumpLink(that) {
 var theURL = that.options[that.selectedIndex].value;
	if (theURL!="") 
			if (theURL.length==2)
		     document.location.href = "/outputs/task" + theURL + "_publist.htm"; 
			else
	  	       document.location.href = theURL;
}