/* SOUND-TV Javascript Library */

function openInquiryWindow() {
	window.open("/exec/inquiry/inquiry.php", "stvInquiryWindow", "width=640,height=450,scrollbars=1,resizable=1,toolbar=0,menubar=0,location=0,status=0");
}

function moveWindowOrigin() {
	moveTo(0, 0);
}

function closeWindow() {
	window.close();
}

function openFullWindow(url) {
	window.open(url, "idoltvSlideshow", "width="+screen.width+",height="+screen.height+",scrollbars=1,resizable=1,toolbar=0,menubar=0,location=0,status=0");
}

function documentFold(id) {
	if (document.all) {
		obj = document.all(id).style;
	} else {
		if (document.getElementById) {
			obj = document.getElementById(id).style;
		}
	}
	if (obj) {
		if (obj.display == 'none') {
			obj.display = 'block';
		} else {
			obj.display = 'none';
		}
	}
}

function wopen(path,w,h){
	window.open(path,"","toolbar=no,scrollbars=no,resizable=no,location=no,directories=no,width="+w+","+"height="+h)
;}
