/*
	システム名	：	総合就職情報サイト
	画面名			：	ヘッダー部
	ファイル名	：	ssl.js
	機能概要		：	ssl処理
	変更履歴		：	以下のように変更履歴を説明

	Ver.	日付			担当者				変更内容
	1.0		05/02/18	A.Sato		新規作成
*/

function get_ssl(sslmode)
{
	if(sslmode==0){
		window.location.href="https://"+window.location.host+window.location.pathname+window.location.search+window.location.hash;
	}else{
		window.location.href="http://"+window.location.host+window.location.pathname+window.location.search+window.location.hash;

	}
}

