function hoverPic(obj, toPath)
{
	obj.src = toPath;
}

function OpenWindow(url, w, h) {
		
	var sbar = OpenWindow.arguments.length > 3 ? "yes" : "no";
	open(url, "", 'menubar=no,directories=no,location=no,resizable=no,scrollbars='+sbar+',width='+w +',height='+h);

}