31 lines
688 B
JavaScript
31 lines
688 B
JavaScript
function changeUser(account)
|
|
{
|
|
if(account == '')
|
|
{
|
|
link = createLink('company', 'dynamic', 'type=all');
|
|
}
|
|
else
|
|
{
|
|
link = createLink('company', 'dynamic', 'type=account¶m=' + account);
|
|
}
|
|
location.href = link;
|
|
}
|
|
|
|
function changeProduct(product)
|
|
{
|
|
link = createLink('company', 'dynamic', 'type=product¶m=' + product);
|
|
location.href = link;
|
|
}
|
|
|
|
function changeProject(project)
|
|
{
|
|
link = createLink('company', 'dynamic', 'type=project¶m=' + project);
|
|
location.href = link;
|
|
}
|
|
|
|
function changeExecution(execution)
|
|
{
|
|
link = createLink('company', 'dynamic', 'type=execution¶m=' + execution);
|
|
location.href = link;
|
|
}
|