// JavaScript Functions for Strand Hanson
function extWin(url,width) {
	var winfeatures = 'width='+width+',height=700,resizable=yes,scrollbars=yes,menubar=yes,status=yes,toolbar=yes';
	window.open(url,'extwin',winfeatures);

}

function extWin2(url,width,height) {
	var winfeatures = 'width='+width+',height='+height+',resizable=yes,scrollbars=yes,menubar=yes,status=yes,toolbar=yes';
	window.open(url,'extwin',winfeatures);

}

