var win=null;
 function displayWin(url)
   { 
    if(win !=null) win.close();
    var width=parseInt(screen.width *0.80);
    var height=parseInt(screen.height *0.70);
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	settings ='top='+TopPosition+',backgroundcolor=#ff0000,left='+LeftPosition+',scrollbars=0,topmargin=0,leftmargin=0,width='+width+',height='+height
	win= window.open('', '', settings);
	win.document.write("<body bgcolor='#E7B3FF' topmargin='0' leftmargin='0'><iframe src='"+url+"' width='100%' height='"+(height-25)+"' valign='top'></iframe>");
	win.document.write('<div align="middle"><center><table text-align="middle" height="25"><tr><td><a href="javascript:window.close();"><img border="0" src="images/close_button.gif"></a></td></tr></table></center></div>');
	win.document.close();
   }
