<!--

if (parent.frames.length >0) {
parent.window.location.href = this.window.location.href;
}

///////////////////////////////////////////////////////////////////////////////////////////////////

var user; var domain; var suffix;
function RazorMail(user, domain, suffix, text) {
document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '" class=copyright>' + text + '</a>');
}

///////////////////////////////////////////////////////////////////////////////////////////////////

function open_html(url, wwidth, wheight) {
pX = Math.round((screen.width - wwidth) / 2);
pY = Math.round((screen.height - wheight) / 2);
if (document.all) {
win_coords =',left='+pX+',top='+pY;
var w = window.open('', 'NewWindow', 'width='+wwidth+',height='+wheight+',titlebar=no,resizable=no,scrollbars=yes'+win_coords);
w.location = url;
}
else {
win_coords =',screenX='+pX+',screenY='+pY;
window.open(url,'_blank', 'width='+wwidth+',height='+wheight+',titlebar=no,menubar=no,status=no,location=no,fullscreen=no,directories=no,resizable=no,scrollbars=yes'+win_coords);
}
}

function open_photo(url, wwidth, wheight) {
pX = Math.round((screen.width - wwidth) / 2);
pY = Math.round((screen.height - wheight) / 2);
if(document.all) {
win_coords =',left='+pX+',top='+pY;
var w = window.open('', 'NewWindow', 'width='+wwidth+',height='+wheight+',titlebar=no,resizable=no,scrollbars=yes'+win_coords);
w.location = url;
}
else {
win_coords =',screenX='+pX+',screenY='+pY;
window.open(url,'_blank', 'width='+wwidth+',height='+wheight+',titlebar=no,menubar=no,status=no,scrollbars=yes,location=no,fullscreen=no,directories=no,resizable=no,scrollbars=no'+win_coords);
}
}

//-->
