// Copyright generator script v1.0
// 
// Used to append a copyright notice in any HTML page.
// You may change copyright text at will.
//
//
// Input:
// ------
//
// imageurl    --> Target url when image is clicked
// imagesource --> Source url of image
// fontsize    --> The size of the font used with the text in the notice 
// fontface    --> The face of the font used with the text in the notice
// fontcolor   --> The color of the font used with the test in the notice
// linkclass   --> Refers to stylesheet class used to render the email link
//    Warning: It is necessary that the HTML page where the copyright notice will
//    be appended, contains an explicitly named class for links 
//    (i.e. A.classname:hover etc, A:hover will not do). This class may be declared
//    in an external stylesheet or in a <style> element inside the <head> element of
//    the page.
// email       --> The email address to contact
//
//
// Output:
// -------
//
// A copyright notice (appears centered).
//
//
// Usage:
// ------
//
// Include in head element the following:
//    Note: You may of course replace the source url to point to the correct location
//
// <script language="Javascript" type="text/javascript" src="/common2/js/copyright.js">
// </script>
//
// Include wherever you want the copyright notice to appear the following:
//    Note: You may of course replace the values stored in the initial variables.
//
// <script language="Javascript" type="text/javascript">
// <!--
// var imageurl = "http://www.greece-internet.net";
// var imagesource = "http://www.ellada.net/hania/images/poweredby.gif";
// var fontsize = "1";
// var fontface = "Arial";
// var fontcolor = "#333366";
// var linkclass = "c2";
//
// copyright(imageurl, imagesource, fontsize, fontface, fontcolor, linkclass, email);
// -->
// </script>

function copyright( fontcolor )
{

var imgurl = "http://www.fhotels.net";
var imagesource = "http://www.ellada.net/common2/logos/poweredby.gif";
var fontsize = "1";
var fontface = "Arial";
var linkclass = "c2";

if (!fontcolor) {fontcolor="#000000";}

document.writeln("<div align = \"center\">")
document.writeln("<a href = \"" + imgurl + "\" target = \"_blank\"><br>");
document.writeln("<img src = \"" + imagesource + "\" border = \"0\"></a><br>");
document.writeln("<font size = \"" + fontsize + "\" face = \"" + fontface + "\" color = \"" + fontcolor +"\">");
document.writeln("Copyright &copy; <strong> FHW </strong> 1994-2012.<br>");
document.writeln("Member of International Association of WebMasters & Designers</font><br>");
document.writeln("<font size='1' face = \"" + fontface + "\" color = \"" + fontcolor +"\">This site is the property of  FHW </font></div>");
}




function copyright1 ( classtext,classlink ){

var imgurl = "http://www.fhotels.net";

document.writeln("<span class = \"" + classtext + "\">Copyright &copy; <a href = \"" + imgurl + "\" target = \"_blank\" class = \"" + classlink + "\">FHW </a> 1994-2012. All rights reserved.</span>"); 
}

