function openWindow(URLpath, windowname, width, height) {
	window.open("" + URLpath + "","" + windowname + "", "width=" + width + ",height=" + height +"");
	return true;
}

