function PlayList() {
	
	new Ajax.Request("process.php",
		{
			method: 'post',
			postBody: 'action=Playlist&plid='+$F('plid')+'&video='+$F('video'),
			onComplete: showResponse
		});
	}
	function showResponse(req) {
		$('show').innerHTML= req.responseText;
	}

