function blockError(){return true;}
window.onerror = blockError;
function Pop(url,windowname,w,h,t,l,s){
connection = window.open(url,windowname,'resizable=no,toolbar=no,scrollbars='+s+',menubar=no,status=no,directories=no,width='+w+',height='+h+',left='+l+',top='+t+'');
}
function ImgPop(img,alt) {
var look='resizable=no,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,width=750,height=550,left=50,top=50'
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<html>')
popwin.document.write('<head>')
popwin.document.write('<title>'+alt+' - Screenshot - Solidata Software Development</title>')
popwin.document.write('</head>')
popwin.document.write('<body bgcolor="#E8EAEF" background="picts/solidata-background.jpg" style="background-repeat:repeat-x">')
popwin.document.write('<center>')
popwin.document.write('<br>')
popwin.document.write('<img src="'+img+'" alt="'+alt+'"><br><br>')
popwin.document.write('<input type="button" value="Close Window" onclick="javascript:window.close()">')
popwin.document.write('</center>')
popwin.document.write('</body>')
popwin.document.write('</html>')
popwin.document.close()
}
document.write('<div Class="divstyle" id="info" style=\'display:none;\'>')
document.write('<div id="imagetitle" class="pstyletitle" align="center"></div>')
document.write('</div>')
var IE = document.all?true:false
if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = getMouseXY;
var tempX = 0
var tempY = 0
function getMouseXY(e) {
if (IE) {
tempX = event.clientX + document.body.scrollLeft
tempY = event.clientY + document.body.scrollTop
} else {
tempX = e.pageX
tempY = e.pageY
}
if (tempX < 0){tempX = 0}
if (tempY < 0){tempY = 0}
obj_info = document.getElementById("info")
obj_info.style.top = tempY + 10;
obj_info.style.left = tempX + 10;
return true
}
function alert_msg(titletext){
obj_info = document.getElementById("info")
obj_info.style.display = '';
obj_imagetitle = document.getElementById("imagetitle");
obj_imagetitle.innerHTML = titletext;
}
function away()
{
obj_info = document.getElementById("info")
obj_info.style.display = 'none';
}