// JavaScript Document

function image_view(url,w,h) //opens new window
{
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=no,scrollbars=no,left=200,top=100";
	newWin = window.open("image_view.php?url="+url, '',win);
	newWin.focus();
};
