// JavaScript Document

function disp(url,name,w,h){
	
	str = "width="+w+",height="+h+",scrollbars=no";
	
	window.open(url, name, str);

}
