﻿function popupWindow(url, w, h, scroll){
	window.open(url, "Popup", "location=1, status=1, width="+w+"px, height="+h+"px, scrollbars="+scroll);
	//Popup.moveTo(100,50);
	}



var toolwin
function openToolWindow(which, width, height) {
	which = which.replace("#","%23")
		if (!toolwin || toolwin.closed) {
			 if (navigator.appVersion.charAt(0) == "3") {
	        xStr = "width=" + width + ",height=" + height;
	     } else {
	        xStr = "top=0,width=" + width + ",height=" + height;
			 }
	  
			 toolwin=window.open(which,"toolwin",xStr);
	  } else {
	     toolwin.location = which;
	     toolwin.focus();
	  }
	}
