/**
 *  Feuille de scripts JavaScript principale de ZicMeUp
 */



/**
 *      Ouvrir une popup vers le Player
 */
function popupPlayer(groupe_id, fiche_id, chanson_id, album_id)
{
	window.open('/player-'+groupe_id+'-'+fiche_id+'-'+chanson_id+'-'+album_id+'.html','player','height=383,width=770,status=no,toolbar=no,menubar=no,location=no,top=150,left=150');
}


/**
 *    Ouvre une popup avec configurée avec les paramètres donnés
 */
function popupBug(strURL,strType,strHeight,strWidth)
{
    var strOpt = '';
    var w = null;
    
    if(strType == 'elastic')
        strOptions = 'scrollbars, top=200, left=430, height=' + strHeight + ',width=' + strWidth;
    if(strType == 'fixed')
        strOptions = 'top=200, left=500, height=' + strHeight + ',width=' + strWidth;

    w = window.open(strURL, 'w', strOptions);
}
function popupContact(strURL,strType,strHeight,strWidth)
{
    var strOpt = '';
    var w = null;
    
    if(strType == 'elastic')
        strOptions = 'scrollbars, top=200, left=430, height=' + strHeight + ',width=' + strWidth;
    if(strType == 'fixed')
        strOptions = 'top=200, left=500, height=' + strHeight + ',width=' + strWidth;

    w = window.open(strURL+'/'+document.location.href, 'w', strOptions);
}



/**
 *  Récupére un élément de la page à partir de son id (alias de document.getElementById)
 */
function get(id)
{
  return document.getElementById(id);
}



/**
 *      Pub
 */
/*function banniere() {
	OAS_AD('Top');
}

function pave() {
	OAS_AD('Middle');	
}*/

function skyscraper() {
	document.write('<object type="application/x-shockwave-flash"');
	document.write('data="http://www.zicmeup.com/flash/pub/Autopromo_Sky.swf"');
	document.write('width="160" height="600">');
	document.write('<param name="movie" value="http://www.zicmeup.com/flash/pub/Autopromo_Sky.swf" />');
	document.write('</object>');
}

function banniere() {
	document.write('<object type="application/x-shockwave-flash"');
	document.write('data="http://www.zicmeup.com/flash/pub/Autopromo_Bandeauhaut.swf"');
	document.write('width="728" height="90">');
	document.write('<param name="movie" value="http://www.zicmeup.com/flash/pub/Autopromo_Bandeauhaut.swf" />');
	document.write('</object>');
}

function pave() {
	document.write('<object type="application/x-shockwave-flash"');
	document.write('data="http://www.zicmeup.com/flash/pub/Autopromo_Carre.swf"');
	document.write('width="300" height="250">');
	document.write('<param name="movie" value="http://www.zicmeup.com/flash/pub/Autopromo_Carre.swf" />');
	document.write('</object>');
}

