function popupOpen(w, h, url) {
//	alert("popupOpen( width = "+w+" , height = "+h+" , url = "+url+" );");	
	Shadowbox.open({
		  player		: 'iframe'
		, content	: url
		, width		: w
		, height	: h
		, options		:{
							displayNav	: true
							,modal			: true
						}
	});
//	thisMovie("main").closePopup();
}

function flashClose(){
	Shadowbox.close();
//	thisMovie("mainAA").closePopup();
}
function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {	
		return window[movieName];
    }else{
		return document[movieName];
	}
}

SBoxOpenUrl = function(w, h, url, close, modal){
	Shadowbox.open({
		  player		: 'iframe'
		, content	: url
		, width		: w
		, height		: h
		, options		:{
							displayNav	: close
							,modal			: modal
						}
	});
	return false;
};
