/**********************************************************\
' Name     : default.js
' Purpose  : Default javascripts
' Created  : 2007-10-26; Internetfabriken
' Modified : 2007-10-26; Internetfabriken
' Comment  :
\**********************************************************/

/*
CreateExerciseFormDialog = function(url, id, callbackMethod)
{
    if (!url)
    {
        url = EPi.ResolveUrlFromUtil("/Templates/Dialogs/InputExerciseForm.aspx");
    }
    url += "?value=" + document.getElementById(id).value;
    
    if (!callbackMethod)
    {
        callbackMethod = function(returnValue, id)
                            {
                                if (returnValue)
                                {
                                   var node = document.getElementById(id);
                                   node.value = returnValue;
                                   EPi.DispatchEvent(node,"change"); 
                                }
                            }
    }
    
    var features = {width:240, height:300, scrollbars:"no"};
    
    return EPi.CreateDialog(url, callbackMethod, id, null, features);
}*/


function OpenCustomDialog()
{
    alert("FUNKAR!");
    return false;
}