function GoOut(whereto)
{
var d = window.document;
var mess="<html><head><title>Come back soon</title></head>";
mess += "<frameset rows='50,*'>";
mess += "<frame name='nav' src='../offhm.html' scrolling='no' marginheight=1 noresize>";
mess += "<frame name='part' src=" +whereto+ " marginheight=1>";
mess += "</frameset><noframes>";
mess += "The link that you are following will take";
mess += " you to a non-PSN! location.  To continue click";
mess += " <A HREF=" + whereto  +">here</A>.</noframes></html>";

d.open();
d.write(mess);
d.close();

}