/*
function resizeSWF(h, w) {
	var height = Math.max(minHeight, h);
	var width = Math.max(minWidth, w);
	//alert("RESIZING TO " + height);
	document.getElementById('theswf').style.height = height + 'px';
}
*/

function flashwindow(url, w, h) {
	var w = window.open(url, '', 'width=' + w + ',height=' + h + ',resizable,location=No,scrollbars=No,status=No');
}

