function open_subscribe_win(){
	if(document.all){
		var w = window.open('','','left=100,top=100,width=300,height=170,scrollbars=no,resizable=1,titlebar=no');
		w.location = htmlrootpath + '/registration/subscribe.htm';
	}else{
		window.open(htmlrootpath + '/registration/subscribe.htm','_blank', 'width=300,height=170,titlebar=no,menubar=no,status=no,location=no,directories=no,resizable=no,screenX=100,screenY=100');
	}
}

function open_sendurl_win(){
	var reply_width = 500;
	var reply_height = 230;
	send_page_query=window.location.search;
	if(send_page_query=='') send_page_query='?use_language='+language;
		else send_page_query=send_page_query + '&use_language='+language;

	if(window.location.hash!='') send_page_hash='&send_page_hash=' + window.location.hash.replace('#', '');
	else send_page_hash='';
	
	send_page=escape(window.location.protocol + '\/\/' + window.location.host + window.location.pathname + send_page_query + send_page_hash);
	var url=htmlrootpath + '/about/sendurl.htm?url='+ send_page + '&title='+urlencoded_page_title;
	if(document.all){
		var w = window.open('', 'PhotoWindow', 'width='+reply_width+',height='+reply_height+',resizable=1');
		w.location = url;
	}else{
		window.open(url,'_blank', 'width='+reply_width+',height='+reply_height+',titlebar=no,menubar=no,status=no,location=no,fullscreen=no,directories=no,resizable=no');
	}

}

function goto_search(){
	document.location=htmlrootpath + '/search/index.htm?items_on_page=10&search_string=' + document.searchform.search_string.value;
}


function open_fullscreen(url){
	var screen_w = screen.width;
	var screen_h = screen.height;
	if(document.all){
		var w = window.open('','','left=0,top=0,width=screen_w,height=screen_h,scrollbars=yes,fullscreen=yes');
		w.location = url;
	}else{
		window.open(url,'_blank', 'width='+screen_w+',height='+screen_h+',titlebar=no,menubar=no,status=no,location=no,fullscreen=yes,directories=no,resizable=no,screenX=0,screenY=0');
	}
}

