// JavaScript Document

// site provides sitename variable
// set remaining required variables
var currentyear = '2004'
var sitename
var funcexist = 1;


//var copyright = "<div onclick='openCopyright()' onmouseover=" + mousehit + "><u>© Copyright " + currentyear + ". All rights reserved.</u></div>"


function copyrightnotice(value)
{
	sitename = value
	//Set is_ie variable for based on browser for use in code  
var agt=navigator.userAgent.toLowerCase();
var is_ie   = (agt.indexOf("msie") != -1);

if (is_ie)
{	     
   var mousehit = 'this.style.cursor="hand"'
} else {	     
   var mousehit = 'this.style.cursor="pointer"'
} 

    document.write("<span onclick='openCopyright()' onmouseover=" + mousehit + "><u>© Copyright " + currentyear + ". All rights reserved.</u></span>")
}



function openCopyright()
{
   var window_width = 300
   var window_height = 250
   var xpos = ((screen.availWidth)/2) - (window_width/2)
   var ypos = ((screen.availHeight)/2) - (window_height/2)
   
   tmp = "http://www.luanne.com/copyright.htm?" + sitename
   
   
   window.open
  (tmp,'Copyright','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=' + window_width + ',height=' + window_height + ',left=' + xpos + ',top=' + ypos + ''); 


}