
var remote = new Array();
remote[0] = new alternateWindow();
remote[0].setName("concept");
remote[0].setAttributes("width=488","height=510","left=5","top=5","resize=yes");
remote[0].setLocation("");

remote[1] = new alternateWindow();
remote[1].setName("sub");
remote[1].setAttributes("width=460","height=550","left=5","top=5","resize=yes","scroll=yes");
remote[1].setLocation("");

function callMethod() {
	if (arguments[0] == "concept") {
		remote[0].setNewWindow();
	} else if (arguments[0] == "sub") {
		remote[1].setNewWindow();
	}
}

