// 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>")
if (this.isIE && this.versionMinor >= 4) {
	document.write (".topedge {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../Images/topedge.png'); height:11px; width:880px; height:127px;}") 
	document.write (".middlewrap {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../Images/background_shadow.png', sizingMethod='scale'); padding:0 5px; width:870px;}") 
	document.write (".bottomedge {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../Images/bottomedge.png'); height:11px;}")
	document.write (".isi {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../Images/background_shadow.png', sizingMethod='scale'); padding:0 5px; width:870px; font-size: 11px; margin: 0 auto;}") 
	document.write (".footer {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../Images/footer_back.png', sizingMethod='scale') no-repeat top left; height: 47px; color: #105baa; font-size: 10px; padding: 9px 5px 5px 38px;}") 
}	
else{
	document.write (".topedge { background-image:url(../Images/topEdge.png); height:11px; width:880px; height:127px;}") 
	document.write (".middlewrap { background-image:url(../Images/background_shadow.png); background-repeat: width:870px; padding:0 5px; repeat-y;}") 
	document.write (".bottomedge { background-image:url(../Images/bottomedge.png); height:11px;}") 
	document.write (".isi { background-image: url(../Images/background_shadow.png); padding:0 5px; width:870px; font-size: 11px; margin: 0 auto;}") 
	document.write (".footer { background-image: url(../Images/footer_back.png); height: 47px; color: #105baa; font-size: 10px; padding: 9px 5px 5px 38px;}") 	
}	
document.write ("</style>")
// ------------------------------