﻿function flashPutHref(a){}
function GoToPage(url,param,val)
{
    var f=document.createElement('FORM');
    f.action=url;
    f.method = "GET";
    AddInputFiled(f,param,val)
	document.body.appendChild(f);
	f.submit();
	return false;
}
function GoToPhotographer(newsID){return GoToPage("fotografi/portfolio.aspx","newsID",newsID);}
function GoToBio(newsID){return GoToPage("bio.aspx","newsID",newsID);}
function GoToPhotos(filter,perm) {

    var f=document.createElement('FORM');
    f.action="/internal/default.aspx";
    f.method="GET";
    AddInputFiled(f,"externalQuery",filter);
    AddInputFiled(f,"externalPermissions",perm);
	document.body.appendChild(f);
	f.submit();
	return false;
}