function showPopupWithDefaultSize(target_url, target_obj) {
	showPopupWithSize(target_url, target_obj, 700, 500);
}
function showPopupWithSize(target_url, target_obj, width, height) {
    this.target = target_obj;

    var obj_window = window.open(target_url, "Lookup", 'width='+width+',height='+height+',resizable=yes,top=200,left=200,dependent=yes,alwaysRaised=yes,scrollbars=yes');
    obj_window.opener = window;
    obj_window.focus();
}

function closePopup(val) {
    window.opener.target.value = val;
    window.opener.focus();
    window.close();
}

function launchApp() {
    document.location = "http://www.gettyimages.com/Music";	
}

function SubmitLanguage(){
    document.getElementById('islanguage').value = 1;
    document.getElementById('culture').submit();
}