function music_video(video_id) {
	newwindow2=window.open('','music_video','height=417,width=665,resizable=false,scrollbars=no,toolbar=no,menubar=no,location=no');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>A Place For Us - Music Videos</title></head>');
	tmp.write('<body style="margin:0px; padding:0px 5px;">');
	tmp.write('<iframe src="http://www.youtube.com/watch?v=' + video_id + '" frameborder="0" style="width:655px; height:505px; margin-top:-92px;" scrolling="no"></iframe>');
	tmp.write('</body></html>');
	tmp.close();
}
function music_video_hd(video_id) {
	newwindow2=window.open('','music_video_hd','height=544,width=1000,resizable=false,scrollbars=no,toolbar=no,menubar=no,location=no');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>A Place For Us - Music Videos</title></head>');
	tmp.write('<body style="margin:0px; padding:0px 5px;">');
	tmp.write('<iframe src="http://www.youtube.com/watch?v=' + video_id + '" frameborder="0" style="width:1000px; height:650px; margin-top:-92px;" scrolling="no"></iframe>');
	tmp.write('</body></html>');
	tmp.close();
}