function ppup(url)
{
var ppit = window.open(url,'ΖΟΤΟ','location,width=680,height=540');
}


//  iframe popup (to view previously loaded image)
function framepopup(imhr)
{
/*var al = document.getElementById(comm).value;*/
var ifwd = screen.width - 16 + "px";
var ifst = getscreentop() + "px";
var fp = document.createElement('iframe');
fp.name = 'sp';
fp.id = 'sp';
fp.src = '/cgi-bin/frame.cgi?imhr=' + imhr + "&rand=" + Math.random();
fp.aline = 'center';
fp.style.height = '820px';
fp.style.width = ifwd;
fp.style.top = ifst;
fp.style.left = '0px';
fp.style.position = 'fixed';
fp.style.top = '0px';
fp.style.textalign = "center";
fp.style.border = '0px solid #cfddea';
document.getElementById('rm').appendChild(fp);
};

function getscreentop()
{
return self.pageYOffset || (document.documentElement && document.documentElement.scrollTop) || (document.body && document.body.scrollTop);
};

//  remove iframe
function fclr()
{
parent.document.getElementById('rm').innerHTML='';
};