function openWin(url,w,h) {
	var stats = eval('"width=' + w + ',height=' + h + ',toolbar=1, location=0, directories=0, status=0, menubar=1, scrollbars=1, resizable=1, top=50, left=100"');
	window.open(url,"win1",stats);
}

function closeWin() {
	top.window.close()
}
