    
function openWindow(url,width,height) {
	var w = window.open(url, 'applet', 'height='+height+',width='+width+',resizable=yes');
	w.focus();

}
