var myWidth = 0, myHeight = 0;
if(window.self != window.parent){
if( typeof( parent.window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = parent.window.innerWidth;
myHeight = parent.window.innerHeight;
} else if( parent.document.documentElement &&
( parent.document.documentElement.clientWidth || parent.document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = parent.document.documentElement.clientWidth;
myHeight = parent.document.documentElement.clientHeight;
} else if( parent.document.body && ( parent.document.body.clientWidth || parent.document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = parent.document.body.clientWidth;
myHeight = parent.document.body.clientHeight;
}
} else {
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement &&
( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
}
document.write('<style>');
document.write('.sug {position: fixed; _position: absolute; _top: expression((dummy = document.documentElement.scrollTop+80) + \"px\"); margin: 2px; background: #FFFFFF; border:#F16C30 1px solid; width: 800px; left:'+(myWidth/2-415)+'px; top:80px; z-index:999; padding:5px;}');
document.write('</style>');
	
function show_w(){
	document.getElementById('sug').style.visibility='visible';
}
function notshow_w(){
	document.getElementById('sug').style.visibility='hidden';
}

