// JavaScript Document
function popupNote(url)
{
	var left = (screen.width/2)-(600/2);
	TheNewWin = window.open(url, 'Note_popup', 'width = 600, height = 240, top = 40, left = '+left)
}

function popupPlayer(url)
{
	var Win = window.open(url, 'Soitin', 'width = 350, height = 100, top = 40, left = 40');
	Win.focus();
}
