function popup(url, name, height, width, scrollbars)
{

    
	var popwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";


	popwin = window.open("", name,'height=320,width=300, screenX=400,screenY=400,top=120,left=600', opts );	
	popwin.focus();
	
	popwin.location = url;
	
}


function pop1(url, name, height, width, scrollbars)
{

    
	var popwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";


	popwin = window.open("", name,'height=400,width=600, screenX=100,screenY=100,top=10,left=100', opts );	
	popwin.focus();
	
	popwin.location = url;
	
}



function pop(url, name, height, width, scrollbars)
{

    
	var popwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";


	popwin = window.open("", name, opts );	
	popwin.focus();
	
	popwin.location = url;
	
}
