//If not exist, Frames Index Select
//by Bob Miller
//ver 2.1 June 21, 2004

<!--
function chkFrames()
{
if (top.frames.length == 0){
 top.window.history.back() 
 }else{
 var str = location.href
 var str1 = str.match("poems")
 var str2 = str.match("humor")
 var str3 = str.match("messages")
 var str4 = str.match("stories")
 var str5 = str.match("cartoons")
 }
if (str = str1){
 top.location="http://www.skywriting.net/links/poems-index.html"
 }
 if (str = str2){
 top.location="http://www.skywriting.net/links/humor-index.html"
 }
 if (str = str3){
 top.location="http://www.skywriting.net/links/messages-index.html"  
 }
 if (str = str4){
 top.location="http://www.skywriting.net/links/stories-index.html"
 }
 if (str = str5){
 top.location="http://www.skywriting.net/cartoons.html"
 }
}
//-->
