﻿// JScript File--left=20,top=20,width=500,height=500,toolbar=no,resizable=1
function dowork(panelid) 
{
     var newwin = window.open('bigimage.aspx?bigimage='+panelid,'mywin',
'toolbar=no,status=no,addressbar=no,titlebar=no,menubar=no,location=center,scrollbars=yes,resizable=yes,height=500,width=657'); 
     newwin.focus();
     
     return false;
}

function popitup(url , title) {
if (newwindow && !newwindow.closed) 
{ newwindow.focus(); newwindow.document.clear() } 
else 
{ newwindow=window.open('','','width=404,height=316,resizable=1') }
newwindow.document.writeln('<> <head> <title>' + title + '<\/title> <\/head> <body bgcolor=\"black\"> <center>');
newwindow.document.writeln('<img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" >');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
}

function tidy()
{
if (newwindow && !newwindow.closed) { newwindow.close(); } 
}




