IE=navigator.appName=="Netscape" && !document.getElementById?false:true;

function wind_text(title_text,text_message) {
        html='<html><head><link rel=stylesheet type="text/css" href="/nikeacgchallenge/style.css"><title>'+title_text+'</title>'+'</head><body  onClick="window.close();" style="background-color:#FFFFFF" leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onload="focus()">'+
		'<a href="#" onClick="window.close();">'+text_message+'</a></body></html>';
  
        if (IE) {
        	win=window.open('','_blank','width=300,height=400,resizable=yes,scrollbars=1,top=50,top=50');
                win.document.open();
                win.document.write(html);
                win.document.close(); 

        
        }
        else {
  
win=window.open('','_blank','width=300,height=400,resizable=yes,top=50,left=10');
        }
                win.document.open();
                win.document.write(html);
          }

