// GOOGLE ADSENSE /* google_ad_client = "pub-5159456658865630"; google_ad_width = 120; google_ad_height = 600; google_ad_format = "120x600_as"; google_ad_channel ="8604942301"; google_ad_type = "text"; google_color_border = "D3D1DD"; google_color_bg = "D3D1DD"; google_color_link = "000000"; google_color_url = "FF6600"; google_color_text = "000000"; */ // UPDATED STYLES FOR GOOGLE ADSENSE google_ad_client = "pub-5159456658865630"; /* CM 01/12/08 (wide) */ google_ad_slot = "3128268178"; google_ad_width = 728; google_ad_height = 90; // DYNAMIC-FUNCTIONS /** * bookmark * * @param url The url to bookmark * @param description Associate this description with the URL */ function addBookmark(url, description) { if(url != null) { if(navigator.appName=='Microsoft Internet Explorer') { window.external.AddFavorite(url, description); } else if (navigator.appName=='Netscape') { alert("Please press CTRL+D to bookmark this page"); } } } /** * setHomePage * * @param url The url to use as the home page */ function setHomePage(ref, url) { if(url != null) { if(navigator.appName=='Microsoft Internet Explorer') { ref.style.behavior='url(#default#homepage)'; ref.setHomePage(window.location); } else if (navigator.appName=='Netscape') { alert("Click 'Edit->Preferences' and then choose the 'Navigator' tag and click 'Use Current Page'"); } } } /** * setVisible * * @param id The id of the element to make visible */ function setVisibility(id, visible) { if(id != null) { var obj = document.getElementById(id); if(obj != null) { if(visible == "visible") { obj.style.visibility = "visible"; obj.style.display = "block"; } else { obj.style.visibility = "hidden"; obj.style.display = "none"; } } } } /** * setVisible * * @param id The id of the element to make visible */ function clearTextField(id) { if(id != null) { var obj = document.getElementById(id); if(obj != null) { obj.value = ""; } } }