// JavaScript Document

function popupwindow(filename,caption) {
	popup=window.open("","popup","width=400,height=300,location=yes,toolbar=no,scrollbars=no,menubar=no,status=yes,resizable=yes"); 
	popup.document.open();
	code="<html><head><title>Sample</title><style type='text/css' media='screen'>@import url('style.css');	A { text-decoration: none; } </style></head><body><p align='center'><img src='images/"+filename+"'></p><p align='center'>"+caption+"</p><a href='javascript:window.close();'>Close Window</a></body></html>";
	popup.document.write(code);
	popup.document.close();
}
//function popupwindow2(filename,caption) {
	//popup=window.open("","popup","width=400,height=415,location=yes,toolbar=no,scrollbars=no,menubar=no,status=yes,resizable=yes"); 
	//popup.document.open();
	//code="<html><head><title>Sample</title><style type='text/css' media='screen'>@import url('style.css');	A { text-decoration: none; } </style></head><body><p align='center'><img src='images/"+filename+"'></p><p align='center'>"+caption+"</p><a href='javascript:window.close();'>Close Window</a></body></html>";
	//popup.document.write(code);
	//popup.document.close();
//}