﻿function openWin(url, width, height) {
	var wn = window.open (url,"mywindow","status=1,scrollbars=1,toolbar=0,width="+width+",height="+height);
	wn.focus();
}