function showLink (post_id,title) {
	window.open("","pop","width=420,height=330");
	document.links.post_id.value=post_id;
	document.links.submit();
}

function addListener (post_id) {
	window.open("","pop","width=300,height=210");
	document.listen.post_id.value=post_id;
	document.listen.submit();
}

function previewComment(){
	window.open("", "pop", "width=400,height=300");
	document.preview.name.value=document.comment.author.value;
	document.preview.email.value=document.comment.email.value;
	document.preview.url.value=document.comment.url.value;
	document.preview.comment.value=document.comment.comment.value;
	document.preview.submit();
}

function edit_comment(id){
	window.open("", "pop", "width=400,height=300");
	document.edit.comment_id.value=id;
	document.preview.submit();
}

function download (extension_id) {
	window.open("","pop","width=300,height=300");
	document.download.id.value=extension_id;
	document.download.submit();
}

function register (extension_id) {
	window.open("","pop","width=300,height=300");
	document.register.id.value=extension_id;
	document.register.submit();
}

