function popupwin(url,winWidth,winHeight) {
	NewWindow = window.open(url,'brochure','width=' + winWidth + ',height=' + winHeight);
	NewWindow.focus();
}