function checkStr(){
var strTemp = new String();
var strArg = new String();
var nLength;
strTemp = location.search;
nLength = strTemp.length;
strArg = strTemp.substring(1, nLength);

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/ cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="1900" id="frame">')
document.write('<param name="allowScriptAccess" value="always" />')
document.write('<param name="movie" value="frame.swf?goJump='+strArg+'">')
document.write('<param name="quality" value="high">')
document.write('<param name="bgcolor" value="#091123">')
document.write('<embed src="frame.swf?goJump='+strArg+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="1900" name="frame">')
document.write('</object>')
}


// window.scroll //

function getScrollLeft() {
 if ((navigator.appName.indexOf("Microsoft Internet Explorer",0) != -1)) {
  return document.body.scrollLeft;
 } else if (window.pageXOffset) {
  return window.pageXOffset;
 } else {
  return 0;
 }
}

function getScrollTop() {
 if ((navigator.appName.indexOf("Microsoft Internet Explorer",0) != -1)) {
  return document.body.scrollTop;
 } else if (window.pageYOffset) {
  return window.pageYOffset;
 } else {
  return 0;
 }
}

function getScrollWidth() {
 if ((navigator.appName.indexOf("Microsoft Internet Explorer",0) != -1)) {
  return document.body.scrollWidth;
 } else if (window.innerWidth) {
  return window.innerWidth;
 }
 return 0;
}

function getScrollHeight() {
 if ((navigator.appName.indexOf("Microsoft Internet Explorer",0) != -1)) {
  return document.body.scrollHeight;
 } else if (window.innerHeight) {
  return window.innerHeight;
 }
 return 0;
}

var ScrollTimer;

function pageScroll(StopX,StopY,Frame,CurrentX,CurrentY) {
 if (ScrollTimer) clearTimeout(ScrollTimer);
 if (!StopX || StopX < 0) StopX = 0;
 if (!StopY || StopY < 0) StopY = 0;
 if (!CurrentX) CurrentX = 0 + getScrollLeft();
 if (!CurrentY) CurrentY = 0 + getScrollTop();
 if (!Frame) Frame = 10;

 CurrentX += (StopX - getScrollLeft()) / Frame; if (CurrentX < 0) CurrentX = 0;
 CurrentY += (StopY - getScrollTop()) / Frame;  if (CurrentY < 0) CurrentY = 0;
 var posX = Math.floor(CurrentX);
 var posY = Math.floor(CurrentY);
 window.scrollTo(posX, posY);
 if (posX != StopX || posY != StopY) {
  ScrollTimer = setTimeout("pageScroll("+StopX+","+StopY+","+Frame+","+CurrentX+","+CurrentY+")",12);
 }
}

function scrollTop() {
  pageScroll(0,0,5);
}