function showWindow() {
	setHeight(640)
	var bg = document.getElementById('holder');
	bg.style.display = 'block';
	bg.style.opacity = .6;
	bg.style.filter = "alpha(opacity=60)";
	//opacityTween = new OpacityTween(document.getElementById('holder'),Tween.linear, 0, 60, 0.5);
	//opacityTween.start();
}
function hideWindow() {
	setHeight(320)
	var bg = document.getElementById('holder');
	bg.style.display = 'none';
}
function setHeight(height) {
	//var height = 680;
	var flashObject = document.getElementById('myId');		
	var flashEmbed = document.getElementById('myId2');		
	flashObject.setAttribute("height", height);		
	if (flashEmbed) {
		flashEmbed.setAttribute("height", height);
	}

}
function javascript_to_flash() {
	hideWindow()
	thisMovie("FlipMenu").asFunc();
	alert(thisMovie("FlipMenu"))
}
function thisMovie(movieName) {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];
}
function callFlash(){
var obj = swfobject.getObjectById('flashcontent');
	if (obj) {  
		alert(obj)
		obj.htmlZoomOut();
	}
}
// onclick="javascript_to_flash()"