function OpenPopupWindow(url,height,width){
	var popup_window = window.open(url,"","scrollbars=yes,toolbar=no,width="+width+",height="+height+",top=100,left=100");
	popup_window.focus();
}
