function breakout_of_frame()
{
// see http://www.thesitewizard.com/archive/framebreak.shtml
// for an explanation of this script and how to use it on your
// own website
if (top.location != location) {
top.location.href = document.location.href ;
}
}

function breakout_of_frame_and_go()
{
if (top.location != location) {
top.location.href = document.location.href ;
top.location.replace("../main.php");
}
}

function breakout_of_frame_and_go_pop()
{
if (top.location != location) {
top.location.href = document.location.href ;
top.location.replace("rock/index.html");
}else{
	top.location.replace("rock/index.html");
}
}

function breakout_of_frame_and_go_up()
{
if (top.location != location) {
top.location.href = document.location.href ;
top.location.replace("http://www.sallystreet.com/rock/index.html");
}else{
	top.location.replace("http://www.sallystreet.com/rock/index.html");
}
}