// JavaScript Document
function openManual(apri, w, h) {
        var style = "top=0, left=0,width="+w+", height="+h+",status=no, menubar=no, toolbar=no, scrollbars=yes";
		window.open(apri, "", style);
}

download_window = null;
function download() {
        //var style = "top=0, left=0,width=100, height=100,status=no, menubar=no, toolbar=no, scrollbars=yes";
		download_window = window.open('','pretty_window','width=200,height=200');
		return true;
		//window.close();
}
function printDir(str){
	
	w=780;
	h=700;
	searchWin = window.open(str,'popup','scrollbars=yes,resizable=yes,width='+w+',height='+h+',status=no,location=no,toolbar=no');
	
}