function submit_comment()
{
	obj = getHtmlElement('c_msg');
	if (obj.value == "")
	{
		alert('Du måste skriva ett meddelande.');
		return;
	}
	
	window.frames['comment_window'].document.comment_form.c_msg.value = obj.value;
	window.frames['comment_window'].document.comment_form.submit();
	
	obj.value = "";
}


function comment_frame_resize(new_comment)
{
	var obj = getHtmlElement('comment_window');

	if (new_comment)
	{
		if (obj.height < 344 && obj.height != 105)
			obj.height = parseInt(obj.height) + 86;
		else if (obj.height == 105)
			obj.height = 85;
	}
	// Else id last comment is removed
	else if (obj.height == 85)
	{
		obj.height = 105;
	}
}


function set_text(text)
{
	obj = getHtmlElement('c_msg');
	obj.value = text;
}

function clip_download()
{
	if (confirm("Du måste vara registrerad användare och inloggad för att kunna ladda ner filmen.\nVill du registrera dig nu?"))
		window.location.href = 'http://ungdomar.se/register.php';
}