


function showPic(pic)
{
	var newWindow;
	var options="";
	
	//open the window...
	newWindow = window.open('','newWin',options+'width=720,height=550,left=25,top=12');
	
	//fill it with stuff...
	newWindow.document.open();
	newWindow.document.write("<html>\n<head>\n\t<title>image</title>\n");
	newWindow.document.write("</head>\n<body bgcolor=\"black\">\n");
	newWindow.document.write("<p align=\"center\">\n\t");
	newWindow.document.write('<img lowsrc="img/general/wait.gif" src="'+pic+'" valign="top">');
	newWindow.document.write("\n</p>");
	newWindow.document.write("\n</body>\n</html>\n\n");
	newWindow.document.close();
	newWindow.focus()
}

function fitImage(param)
{
	if(param.complete)
		alert("done");
}