/*
@description Global front-end javascript functions

@author	Bryan Gullan
@created 2006-05-18

@dependsOn 
@basedOn 

@modified
*/

function clearsearchbox() {
	if(document.getElementById('searchinput').value == "What are you looking for?"){
		document.getElementById('searchinput').value = '';
	}
}

function email_to_friend(page) {
	window.open('/applications/send_to_friend/compose.rm?id='+page,'Email','width=380,height=550,scrollbars=1');
}

function post_comment(page) {
	window.open('/applications/comments/comments.rm?article_id='+page,'Comment','width=380,height=550,scrollbars=1');
}