// JavaScript Document
function winOpen(target_html,w,h){
	var property = 'toolbar=yes,scrollbars=yes,resizable=yes,Width='+w+',Height='+h;
	window.open(target_html,'',property);
}