function imgPopup(id) {
	w = screen.availWidth;
   	h = screen.availHeight;
   	var leftPos = (w-500)/2, topPos = (h-500)/2;
    window.open("image.php?id="+id,"","width=400,height=400,resizable,scrollbars=no,status=0,top=" + topPos + ",left=" + leftPos);
}

function imgPopupStatic(imagename) {
	w = screen.availWidth;
   	h = screen.availHeight;
   	var leftPos = (w-500)/2, topPos = (h-500)/2;
    window.open("image2.php?imagename="+imagename,"","width=400,height=400,resizable,scrollbars=no,status=0,top=" + topPos + ",left=" + leftPos);
}


function makeCall() {
	parent.flashFrame.thisMovie("music").startstop();
}

