var popupSet = new Array();
//--------------------------
function tidyUp()
{
for (var x in popupSet)
{
if ((x != 'length') && (popupSet[x] != null))
{
if (popupSet[x].closed != true)
{
popupSet[x].close();
}
}
}
}
//----------------
function bigPic(name, title, pic, picWidth, picHeight)
{
winWidth = picWidth + 20;
winHeight = picHeight + 20;
v = eval(navigator.appVersion.substring(0,2));
if ((navigator.appName == 'Microsoft Internet Explorer') && (v < 4))
{
return true;
}
// close down any open windows
tidyUp();
popup = window.open('',
name,
'width=' + winWidth +
', height=' + winHeight);
if (popup != null)
{
popup.document.write(
'
' + title +
''
+ ''
+ ''
+ ' '
+ ' |
'
+ '');
popup.document.close();
popupSet[name] = popup;
}
return false;
}
//----------
function writebreak()
{
document.write("
");
}
//----------
function x(uniqueid, file, width, height, smallfile, photodetail)
{
document.write("
");
}
function x500(uniqueid, file, smallfile, photodetail)
{
document.write("
");
}
function x333(uniqueid, file, smallfile, photodetail)
{
document.write("
");
}
function z(file, width, height, photodetail)
{
var uniqueid;
uniqueid = 1;
document.write("" + photodetail + " ");
}
//----------Function to stop spam
function nospam(user, domain, suffix) {
document.write('');
document.write(user + '@' + domain + '.' + suffix + '');
}