﻿/*****************************************************/
/*  Creations Softmatrix Inc. all rights Reserved    */
/*                                                   */
/*  Code that will generate a clickable image        */
/*  link to cs                                       */
/*****************************************************/

/*
 Example code:
 <div id="cslogoid" style="float: right; margin-top: 15px" class="125x33FR"/> 
 <script type="text/javascript" src="http://www.creationsoftmatrix.com/scripts/CSBannerScript.js"></script>


*/
var divbox = document.getElementById('cslogoid');
var clvalue = divbox.getAttribute("class");
var img = document.createElement("IMG");
var newlink = document.createElement("a");


if (clvalue == '125x33FR') {
    img.src = "http://www.creationsoftmatrix.com/images/ScriptLogos/125x33FR.gif";
    newlink.setAttribute('href', 'http://www.creationsoftmatrix.com/fre_index.html');
    newlink.setAttribute('target', '_blank');
}
if (clvalue == '125x33EN') {
    img.src = "http://www.creationsoftmatrix.com/images/ScriptLogos/125x33EN.gif";
    newlink.setAttribute('href', 'http://www.creationsoftmatrix.com/');
    newlink.setAttribute('target', '_blank');
}

newlink.appendChild(img);
divbox.appendChild(newlink);

