document.writeln('<style type="text/css">');
document.writeln('.content-subject {FONT-WEIGHT: bold; FONT-SIZE: 6pt; TEXT-TRANSFORM: uppercase; COLOR: #ffffff; LINE-HEIGHT: 6pt; FONT-FAMILY: tahoma; LETTER-SPACING: 1px; BACKGROUND-COLOR: #e1dfd1; TEXT-ALIGN: justify}');
document.writeln('.content-content {FONT-SIZE: 9pt; COLOR: #666666; LINE-HEIGHT: 11pt; FONT-FAMILY: tahoma; LETTER-SPACING: 0px; BACKGROUND-COLOR: #E2E0D8; TEXT-ALIGN: justify}');
document.writeln('.side-title {FONT-WEIGHT: bold; FONT-SIZE: 6pt; TEXT-TRANSFORM: uppercase; COLOR: #9c1341; LINE-HEIGHT: 8pt; FONT-FAMILY: tahoma; LETTER-SPACING: 1px; BACKGROUND-COLOR: #f2f1e8; TEXT-ALIGN: justify}');
document.writeln('.side-content {FONT-SIZE: 9pt; COLOR: #666666; LINE-HEIGHT: 11pt; FONT-FAMILY: tahoma; LETTER-SPACING: 0px; BACKGROUND-COLOR: #dbd9cd; TEXT-ALIGN: justify}');
document.writeln('TD A:link {COLOR: #666666; TEXT-DECORATION: none}');
document.writeln('TD A:visited {COLOR: #666666; TEXT-DECORATION: none}');
document.writeln('TD A:hover {COLOR: #999999; TEXT-DECORATION: none}');
document.writeln('BODY {FONT-SIZE: 7pt; COLOR: #5e5354; LINE-HEIGHT: 11pt; FONT-FAMILY: tahoma; LETTER-SPACING: 0px; TEXT-ALIGN: justify}');
document.writeln('TD {FONT-SIZE: 7pt; COLOR: #5e5354; LINE-HEIGHT: 11pt; FONT-FAMILY: tahoma; LETTER-SPACING: 0px; TEXT-ALIGN: justify}');
document.writeln('</style>');

//document.writeln('.side-content {FONT-SIZE: 9pt; COLOR: #666666; LINE-HEIGHT: 11pt; FONT-FAMILY: tahoma; LETTER-SPACING: 0px; BACKGROUND-COLOR: #dbd9cd; TEXT-ALIGN: justify}');


var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")


function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}
