// JavaScript Document

function wopen(url, w, h) {
	var str = "";
	if(w) {
		str+="width="+w+",";  	
	}
	if(h) {
		str+="height="+h+",";
	}
      window.open (url ,"w"+new Date().getTime(), str+"directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
}