// JavaScript Document

function detailView(url,option) {
	
	switch ( option ) {
		case "1":
			window.open(url,"pop","width=440,height=430,resizable=1,menubar=0,location=0,toolbar=0,scrollbars=1");
			break;
		case "2":
			window.open(url,"pop","width=310,height=430,resizable=1,menubar=0,location=0,toolbar=0,scrollbars=1");
			break;
		case "3":
			window.open(url,"pop","width=347,height=430,resizable=1,menubar=0,location=0,toolbar=0,scrollbars=1");
			break;
		case "4":
			window.open(url,"pop","width=440,height=290,resizable=1,menubar=0,location=0,toolbar=0,scrollbars=1");
			break;
		default:
			break;
	}
}
