function openwin(url,name,features,doClose) {
    if(doClose){
        window.open("close.html",name,features);
	    window.setTimeout("window.open('"+url+"','"+name+"','"+features+"')",10);
    }else{
        window.open(url,name,features);
    }
}

function printout() {
    var pURL = document.URL + ( document.URL.match( /\?/ ) ? "&" : "?" ) + "print=1";
    var pWin = window.open(pURL, "print", "" );
}
