// JavaScript Document

function openFlash(url) {
    Shadowbox.init({
        skipSetup: true
    });

    Shadowbox.open({
        player:     'swf',
        content:    url,
		height:		490,
		width:		900
    });
}

