// Copyrights © 2007, PearlCreation.com. All right reserved.
// The present javascript code is property of PearlCreation.com.
// This code can only be used inside Internet/Intranet web sites located on *web servers*.
// This code *cannot* be used inside distributable implementations (such as demos, applications or CD-based webs).
// Any unauthorized use, reverse-engineering, alteration, transmission, transformation, facsimile, or copying of any means (electronic or not) is strictly prohibited and will be prosecuted.
// ***Removal of the present copyright notice is strictly prohibited***
function dblclick() {
	top();
}
if (document.layers) {
	document.captureEvents(Event.ONDBLCLICK);
}
document.ondblclick=dblclick;

var t;
function top() {
if (document.body.scrollTop!=0 || document.documentElement.scrollTop!=0){
window.scrollBy(0,-50);
t=setTimeout('top()',15);
}
else clearTimeout(t);
}
