//########image change+preload ########

	var img = new Array();

	img[11] = new Image();
	img[11].src="./images/common/b_profile.gif";
	img[12] = new Image();
	img[12].src="./images/common/b_profile_over.gif";

	img[21] = new Image();
	img[21] .src="./images/common/b_categories.gif";
	img[22] = new Image();
	img[22] .src="./images/common/b_categories_over.gif";

	img[31] = new Image();
	img[31] .src="./images/common/b_location.gif";
	img[32] = new Image();
	img[32] .src="./images/common/b_location_over.gif";

	img[41] = new Image();
	img[41] .src="./images/common/b_contact.gif";
	img[42] = new Image();
	img[42] .src="./images/common/b_contact_over.gif";

//imagesonoff
	function swapImg(name,num) {
		document.images[name].src = img[num].src;
	}

//######## window open ########

function w_open(theURL,winName,features) {
	wObj=window.open(theURL,winName,features);
	wObj.focus();
}
