window.onload = checkScreenSize;

function checkScreenSize() {

	var url = document.URL;	
	var width = window.innerWidth;

	var mainContainer = document.getElementById('mainContainer');
	var searchParams = document.getElementById('searchParams');
	var shortcutList = document.getElementById('shortcutList');

	if (width == 400) {
		if (mainContainer) {
			mainContainer.style.width = '360px';
			mainContainer.style.height = '240px';
		}
		if (searchParams) {
			searchParams.style.width = '226px';
		}
		if (shortcutList) {
			shortcutList.style.width = '360px';
			shortcutList.style.height = '120px';
		}
	} else if (width == 240) {
		if (mainContainer) {
			mainContainer.style.width = '240px';
			mainContainer.style.height = '400px';
		}
		if (searchParams) {
			searchParams.style.width = '106px';
		}
		if (shortcutList) {
			shortcutList.style.width = '240px';
			shortcutList.style.height = '180px';
		}
	}

	setTimeout("checkScreenSize()", 1000);

}

function conductSearch() {
	
	var searchURL = document.getElementById('searchType')[document.getElementById('searchType').selectedIndex].value;
	var searchParams = document.getElementById('searchParams').value;

	document.location = searchURL+searchParams;
	
}