function editTrackPlaylistWindow(contentTypeID, contentID) {

	var today = new Date();

	var chasm = screen.availWidth;
	var mount = screen.availHeight;

	var w = 660;
	var h = 600;

	editPlaylistWindowHandle = null;
	editPlaylistWindowHandle = window.open('/cms/trackplaylists/default.aspx?ContentTypeID=' + contentTypeID + '&ContentID=' + contentID + '&rnd=' + today.getTime(),'EditTrackPlaylist','resizable,width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5) + ',scrollbars=yes');
	if (editPlaylistWindowHandle.blur) editPlaylistWindowHandle.focus();
}

function unberPlaylistWindow() {

	var today = new Date();

	var chasm = screen.availWidth;
	var mount = screen.availHeight;

	var w = 660;
	var h = 600;

	uberPlaylistWindowHandle = null;
	uberPlaylistWindowHandle = window.open('/cms/trackplaylists/uber.aspx?rnd=' + today.getTime(),'UberTrackPlaylist','resizable,width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5) + ',scrollbars=yes');
	if (uberPlaylistWindowHandle.blur) uberPlaylistWindowHandle.focus();
}