function popup(url,name,width,height,scrollbars){
   	var optional = 'width=' + width + ',height=' + height +',scrollbars='+ scrollbars +',menubar=0,toolbar=0,location=0,directories=0,status=0,resizable=0';
	var newwindow = window.open( url, name, optional );
	newwindow.focus();
}	

