function getBuddyIcon(n) {
	popWin("buddy_icons.html?id="+n,"buddy_icons",800,600,"yes","yes","no","no","no","no","no",false);
}

function getScreensaver(n) {
	popWin("screensavers.html?id="+n,"screensavers",800,600,"yes","yes","no","no","no","no","no",false);
}

function getContactTable(n) {
	popWin("myspace_contact.html?id=contact_supergirl_"+n,"myspace_contact",800,600,"yes","yes","no","no","no","no","no",false);
}

function getAvatar(n) {
	popWin("myspace_avatar.html?id=supergirl_avatar_"+n,"myspace_avatar",800,600,"yes","yes","no","no","no","no","no",false);
}

/*
function getPoster(n) {
	popWin("myspace_avatar.html?id=supergirl_avatar_"+n,"myspace_avatar",800,600,"yes","yes","no","no","no","no","no",false);
}
*/

function getStationery(n) {
	popWin("stationery.html?id="+n,"myspace_avatar",800,600,"yes","yes","no","no","no","no","no",false);
}

function getEventPhoto(n) {
	popWin("event_photos.html?id="+n,"event_photos",800,800,"yes","yes","no","no","no","no","no",false);
}

function displayFullSizeImage(obj) {
	//set assetPath
	var assetPath = obj.url;
	
	//find last index of '/'
	var lastIndexForwardSlash = assetPath.lastIndexOf('/');
	
	//find last index of '.'
	var lastIndexDot = assetPath.lastIndexOf('.');
	
	//strip out filename form assetPath
	var filename = assetPath.substring(lastIndexForwardSlash + 1, lastIndexDot);
	
	//getEventPhoto
	getEventPhoto(filename);
	
}