function pop(url, name, height, width, scrollbars, resizable)
{

    
	var popwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";


	popwin = window.open("", name, 'height=600, width=600, scrollbars=yes resizable=yes' );	
	popwin.focus();
	
	popwin.location = url;
	
}
