/////<SPAN id=pseudoCursor>|</SPAN>
/////<SPAN id=pseudoCursor1>|</SPAN>
/////<SPAN id=pseudoCursor2>|</SPAN>
function blinkPseudoCursor()
{
if (document.getElementById){
var pseudoCursor = document.getElementById('pseudoCursor');
if (pseudoCursor) pseudoCursor.style.color = RGBtoHex(pseudoCursor.style.color)=='red'?'yellow':'red';
}
}

function blinkPseudoCursor1()
{
if (document.getElementById){
var pseudoCursor1 = document.getElementById('pseudoCursor1');
if (pseudoCursor1) pseudoCursor1.style.color = RGBtoHex(pseudoCursor1.style.color)=='red'?'yellow':'red';
}
}

function blinkPseudoCursor2()
{
if (document.getElementById){
var pseudoCursor2 = document.getElementById('pseudoCursor2');
if (pseudoCursor2) pseudoCursor2.style.color = RGBtoHex(pseudoCursor2.style.color)=='yellow'?'red':'yellow';
}
}

setInterval(blinkPseudoCursor, 500);
setInterval(blinkPseudoCursor1, 500);
setInterval(blinkPseudoCursor2, 500);
function RGBtoHex(rgb)
{
if(rgb.indexOf("rgb(")==-1) return rgb;
var rgb_array = rgb.replace("rgb(","").replace(")","").split(",");
rgb_array[0] = decToHex(rgb_array[0]);
rgb_array[1] = decToHex(rgb_array[1]);
rgb_array[2] = decToHex(rgb_array[2]);
return "#"+rgb_array.join("");
}
function decToHex(n){return Number(n).toString(16);}
function hexTodec (hex){return parseInt(hex,16);}


function openpopup(url,w,h)
{
var left=(window.screen.availWidth-w)/2;
var top=(window.screen.availHeight-h)/2;
win = window.open(url, '', 'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width='+w+',height='+h+',left='+left+',top='+top+'');
win.focus();
return false;
}


function openpopup1(url,w,h)
{
var left=(window.screen.availWidth-w)/2;
var top=(window.screen.availHeight-h)/2;
win = window.open(url, '', 'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width='+w+',height='+h+',left='+left+',top='+top+'');
win.focus();
return false;
}