// JavaScript Document

function winopen(URL, windowname, w, h, scrollbars){
	window.open(URL, windowname, 'width=' + w + ',height=' + h  + ',resizable=0,toolbar=0,scrollbars=' + scrollbars).focus();
}
