﻿    var newwindow;
    function popOpen(url)
    {
	    newwindow=window.open(url,'name','height=300,width=300, left=450, top=250, location=no');
	    if (window.focus) {newwindow.focus()}
    }    
