function OpenMe(newin) {
	  flyout=window.open(newin,'flyout','resizable=no,scrollbars=yes,width=500,height=350,top=50,left=50')
}

function newWin(strURL,imgheight,imgwidth) {
        var mybar='toolbar=no,directories=no,status=no,menubar=no,resizable=no';
        mybar+=',width=';
        mybar+=imgwidth;
        mybar+=',height=';
        mybar+=imgheight;

        window.open(strURL, 'newWin', mybar);
}