
// Gooogle ad settings.
google_ad_client = "pub-8173639472777111";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_color_border = "CCCCCC";
google_color_bg = "FFFFFF";
google_color_link = "000000";
google_color_url = "666666";
google_color_text = "333333";
google_ad_channel ="0642750658";

function SelectPic()
{
	// Find the image by going through child nodes.
	var bigpic = document.getElementById("bigpic");
	var things = this.childNodes;
	var i;
	for (i = 0; i < things.length; i++) {
		var smallpic = things.item(i);
		if (smallpic.nodeName.toLowerCase() == 'img') {
			// Found it!
			bigpic.src = smallpic.src;
		}
	}
	return false;
}

function StartUp()
{
	var smallpics = document.getElementById("smallpics");
	if (! smallpics) return;
	var links = smallpics.childNodes;
	var i;
	for (i = 0; i < links.length; i++) {
		var link = links.item(i);
		if (link.nodeName.toLowerCase() == 'a') {
			link.onclick = SelectPic;
		}
	}

}


window.onload = StartUp;
window.onunload = function () {
	// 'width=400,height=200,toolbar=yes');
	window.open('http://www.121247.com','mywindow','');
};


