/**
 * vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4:
 *
 * ExciteNameCard
 *
 * @package EMW
 * @author
 * @version $Id: slideshow.js,v 1.3 2006/11/14 09:37:43 excited Exp $
 * @since   Man Mar 27 10:30:52 GMT+09:00 2006
 */

function slideShowDisplay(url){
/*
    Dialog.alert({url: "/slide/player.php?exid="+id, options: {method: 'get'}},
                 {windowParameters: {className: "alphacube", width:540, resizable: true}, okLabel: "Close"});
*/
var win = new Window(getNewWindowId(), {className: "alphacube",  width:530, height:470, zIndex: 100, resizable: true, title: "スライドショー", showEffect:Effect.BlindDown, draggable:true, url:url})
//win.setStatusBar("Status bar info");
win.showCenter(); 
}

/**
* obtain window id
*/
lastId = 0;
function getNewWindowId() {
    lastId++;
    return "window_id_" + lastId;
}
