function openWindow(num) {
	var add = new Array(); 
	
	add[0] = "automobile.htm";
	add[1] = "bank.htm";
	add[2] = "electrica.htm";
	add[3] = "food.htm";
	add[4] = "furniture.htm";
	add[5] = "jewel.htm";
	add[6] = "health.htm";
	add[7] = "property.htm";
	add[8] = "shopping.htm";
	add[9] = "bookstore.htm";
	add[10] = "telecommunication.htm";
	add[11] = "tourism.htm";
	add[12] = "uni.htm";
	add[13] = "others.htm";
	window.open(add[num], "_blank","width=900 height=450 scrollbars=yes resizable=yes");
}
