function toggle(targetId) {
	if (document.getElementById) {
		target = document.getElementById(targetId);
		if (target.style.display == "none") {
			target.style.display = "";
		} else {
			target.style.display = "none";
		}
	}
}
function PhotoView(URLStr) {
	var TxtCode = "<html>\n<head>\n<title>Ike Abayomi.com</title>\n</head>";
	TxtCode += "<body topmargin='0' leftmargin='0'>\n<img src='"+URLStr+"' width='500' height='375' border='0'>\n</body>\n</html>";
	
	var WinView = open("", "Foto", "width=500, height=375");
	WinView.document.write(TxtCode);
}