document.write("<div id='divpiao2' style='Z-INDEX:100; right:20px; WIDTH:100px; POSITION:absolute; TOP:43px; HEIGHT:100px; visibility: visible;'>");
document.write("<a href='/Personal/reg/PerSonalReg.aspx'><img src='image/search_img.gif' width='95' height='95' border='0'></a>");
document.write("<div onclick=\"turnit('divpiao2');\" style='cursor:pointer;' align='right'></div></div>");

// onmouseover='pause_resume();' onmouseout='pause_resume();'

var obj2=document.getElementById("divpiao2");
var xPos2 = 200;
var yPos2 = 100;
var step2 = 1;
var delay2 = 30; 
var height2 = 0;
var Hoffset2 = 0;
var Woffset2 = 0;
var yon2 = 0;
var xon2 = 0;
var pause2 = true;
var interval2;
document.getElementById('divpiao2').style.top = yPos2 + "px";
function changePos2() {
width2 = document.documentElement.clientWidth;
height2 = document.documentElement.clientHeight;
Hoffset2 = document.getElementById('divpiao2').offsetHeight;
Woffset2 = document.getElementById('divpiao2').offsetWidth;
document.getElementById('divpiao2').style.left = xPos2 + document.documentElement.scrollLeft + "px";
document.getElementById('divpiao2').style.top = yPos2 + document.documentElement.scrollTop + "px";
if (yon2) {
yPos2 = yPos2 + step2;
}
else {
yPos2 = yPos2 - step2;
}
if (yPos2 < 0) {
yon2 = 1;
yPos2 = 0;
}
if (yPos2 >= (height2 - Hoffset2)) {
yon2 = 0;
yPos2 = (height2 - Hoffset2);
}
if (xon2) {
xPos2 = xPos2 + step2;
}
else {
xPos2 = xPos2 - step2;
}
if (xPos2 < 0) {
xon2 = 1;
xPos2 = 0;
}
if (xPos2 >= (width2 - Woffset2)) {
xon2 = 0;
xPos2 = (width2 - Woffset2);
}
}
function start2() {

document.getElementById('divpiao2').visibility = "visible";
interval2 = setInterval('changePos2()', delay2);
}

obj2.onmouseover=function() 
{ 
    pause_resume2();
}    

obj2.onmouseout=function()
{
    pause_resume2();
}

function pause_resume2() {
if(pause2) {
clearInterval(interval2);
pause2 = false;
}
else {
interval2 = setInterval('changePos2()',delay2);
pause2 = true;
}
}
start2();