var win = null;
var index = 1;
function openDialog(id,w,h) {
    Dialog.alert($(id).innerHTML, {className: "alphacube",  width:w, height:h, id: "d" + index})
    index++;
	//document.getElementById('videoHidder').style.display = 'none';
}

function lastDialog(id) {
    Dialog.confirm($(id).innerHTML, {className: "alphacube",  width:250, okLabel: "Close All", ok: closeAllModalWindows})
}

function closeAllModalWindows() {
    Windows.closeAllModalWindows();
    //return true;
	//document.getElementById('videoPl').style.display = 'inline';
}


function swapWallp(paperId){
	var ssContainer = document.getElementById('wpHolder');
    ssContainer.innerHTML = '<div align="center"><img src="http://creative.myspace.com/Client/WarnerBros/SisterhoodPants2/Downloads/thumb'+ paperId +'.jpg" /><br /><a href="http://creative.myspace.com/Client/WarnerBros/SisterhoodPants2/Downloads/SOTP_'+ paperId +'_800x600.zip" class="wpLinks" name="&lid=wallpaper'+ paperId +'Small">800x600</a> | <a href="http://creative.myspace.com/Client/WarnerBros/SisterhoodPants2/Downloads/SOTP_'+ paperId +'_1024x768.zip" class="wpLinks" name="&lid=wallpaper'+ paperId +'Medium">1024x768</a> | <a href="http://creative.myspace.com/Client/WarnerBros/SisterhoodPants2/Downloads/SOTP_'+ paperId +'_1280x1024.zip" class="wpLinks" name="&lid=wallpaper'+ paperId +'Large">1280x1024</a></div>';
	openDialog(wallpaperPop, 350, 275);
}


function videoSwap(videoId){
	var videoContainer = document.getElementById('videoPlayer');
   	videoContainer.innerHTML = '<object width="554px" height="337px" ><param name="allowFullScreen" value="true"/><param name="wmode" value="opaque"/><param name="movie" value="http://mediaservices.myspace.com/services/media/embed.aspx/m='+ videoId +',t=1,mt=video,primaryColor=0x72b6b9,v=2,ap=1,secondaryColor=0x72b6b9,sr=0"/><embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m='+ videoId +',t=1,mt=video,primaryColor=0x72b6b9,v=2,ap=1,secondaryColor=0x72b6b9,sr=0" width="554" height="337" allowFullScreen="true" type="application/x-shockwave-flash" wmode="opaque" /></object>';
}

