////Alert for form filling

function imagePopUp01(imagename,alttag,title)
{  
var imageID = ('<img src="images/'+imagename+'" border=0 hspace=0 vspace=0 alt="'+alttag+'">');  
var imageIDClean = imageID.replace(/'/g, '');    
var win = window.open('', '','scrollbars=yes,status=yes,menubar=no,resizable=yes,width=825,height=625,top=0');    
win.document.write('<html><head><title>::: '+title+' :::</title></head><body topmargin=0 leftmargin=0><table align=center border=0 cellpadding=4 cellspacing=0><tr><td align=center>');
win.document.write(imageIDClean); 
win.document.write('</td></tr><tr><td align=center><a href=javascript:self.close()><img src=images/closewindow.gif border=0></a></td></tr></table>');
win.document.write('</body></html>'); 
}

//end of function checktest
