function resizeFlashW(w){

	var dom = (window.document.getElementById);
	var iex = (window.document.all);
	
	if(dom){
		var flash = window.document.getElementById('flashDiv').style;
	} else if (iex){
		var flash = flashDiv.style;
	}

	flash.width = w+"px";
	
}

function resizeFlashH(h){

	var dom = (window.document.getElementById);
	var iex = (window.document.all);
	
	if(dom){
		var flash = window.document.getElementById('flashDiv').style;
	} else if (iex){
		var flash = flashDiv.style;
		
	}

	flash.height = h+"px";

}

function popup(url, width, height){
	window.open (url, 'win2', config='width='+width+', height='+height+', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
}