
function openWindow(theURL, width, height, features, winName) { //v2.0
	if(typeof(width) == "undefined" || width == 0){
		width = 500;
	}
	
	if(typeof(height) == "undefined" || height == 0){
		height = 500;
	}
	
	if(typeof(features) == "undefined" || features == ""){
		features = "status=yes,menubar=no,scrollbars=yes,resizable=yes";
	}
	
	features = features + ', width = ' + width + ', height = ' + height;
	
  window.open(theURL,winName,features);
}

function jump(){
	var target = "blank";
	
	var url = document.selectCont.select.options[document.selectCont.select.selectedIndex].value;

	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}

function openWin(){
   //window.open(window.location.href,"printWindow");
	window.open(window.location.href,"printWindow",'width=710,height=660,toolbar=1,scrollbars=1');
}

if(window.name == "printWindow"){
    document.write('<link rel="stylesheet" href="../share/css/print.css" type="text/css" media="all" />');
}