Shadowbox.init({
	players:	["iframe"],
	skipSetup:	true,
        modal:		false
});
function sb_onclick(obj , intWidth , intHeight ) {
	var i;
	var strHRef = obj.href;
	switch( true ) {
	case ( strHRef.indexOf("-ramp.asp") > -1 ):
		if ( intWidth == null ) intWidth = 700;
		if ( intHeight == null ) intHeight = 300;
		strHRef = strHRef.replace(".asp","-shadowbox.asp");
		Shadowbox_Open( strHRef , "iframe" , obj.title , intWidth , intHeight );
		return false;
	default:
		Shadowbox_Open( strHRef , "iframe" , obj.title );
		return false;
	}
	return true;
}

function Shadowbox_Open( strHRef , strPlayer , strTitle , intWidth , intHeight ) {
	Shadowbox.open({
		content:	strHRef,
		player:		strPlayer,
		title:		strTitle,
		width:		intWidth,
		height:		intHeight
	});
}

