// JavaScript Document
var ua = navigator.userAgent.toLowerCase(); 
this.ua= ua;
this.isIE        = ( (ua.indexOf("msie") != -1) && (ua.indexOf("opera") == -1) && (ua.indexOf("webtv") == -1) ); 
this.versionMinor = parseFloat(navigator.appVersion); 


document.write ("<style>")

/*
document.write ("#linkHolder {position:relative; margin:0 auto 0 auto; width:771px; height:1px;}")
document.write ("#SAlink {position:absolute; width:200px; height:40px; right:25px; top:-25px; cursor:pointer;}")
*/

if (this.isIE && this.versionMinor >= 4) {
	document.write (".bottomedge {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottomedge.png',sizingMethod='scale'); margin:0; padding:0; border:0px solid red; width:780px; height:70px;}") 
	document.write (".topedge {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/topedge.png',sizingMethod='scale'); margin:0; padding:0; width:780px; height:23px;}")
	
}	
else{
	document.write (".bottomedge { background-image:url(images/bottomedge.png); background-repeat: no-repeat; margin:0; padding:0; border:0px solid red; width:780px; height:70px;}") 
	document.write (".topedge { background-image:url(images/topedge.png); background-repeat: no-repeat; margin:0; padding:0; width:780px; height:23px;}")
    	
}	
document.write ("</style>")