/**
 * Misc. functions used in the MyAOL app.
 */
// Iframe notification code
function sendIFrameNotification(name)
{
	if (top)
	{
		if (top.loadIframeData)
		{
			top.loadIframeData(name);
		}
	}
}

function MyAOL_openPopupA(url)
{
	// cspop(url, 553, 465);
	cspop(url, 670, 465);
}

function MyAOL_openPopupB(url)
{
	cspop(url, 553, 670);
}

function MyAOL_openPopupC(url)
{
	doGenericPopup(url, "WOFmod1", 670, 465, "scrollbars=no,resizable=yes")
}

function MyAOL_openPopupD(url)
{
	doGenericPopup(url, "WOFmod2", 400, 350, "scrollbars=no,resizable=yes")
}


function MyAOL_openMoreShows(url)
{
	cspop(url, 720, 800, "scrollbars=yes");
}

function notpersmsg(url)
{
	if (confirm("Before you can rate, you must first customize your recommendations.\n"+
		        "It's easy and takes about 2 minutes!\n"+
		        "At the end of the wizard you can rate the show you clicked.\n\n"+
		         "To personalize now, click OK. Otherwise, click Cancel."))
	{
		MyAOL_openPopupA(url);
	}
}
